/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: #666;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #ec4899, #be185d);
  color: white;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #be185d, #9d174d);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #ec4899;
  border: 2px solid #ec4899;
}

.btn-outline:hover {
  background: #ec4899;
  color: white;
}

.btn-white {
  background: white;
  color: #ec4899;
}

.btn-white:hover {
  background: #f9fafb;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #fdf2f8, #ffffff);
  padding: 80px 0;
  text-align: center;
}

.badge {
  display: inline-block;
  background: #fce7f3;
  color: #be185d;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #111;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-title .highlight {
  color: #ec4899;
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2rem;
}

.benefit-icon.droplets {
  background: #dbeafe;
}
.benefit-icon.leaf {
  background: #dcfce7;
}
.benefit-icon.shield {
  background: #dbeafe;
}
.benefit-icon.clock {
  background: #e9d5ff;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 0.75rem;
}

.benefit-card p {
  color: #666;
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: #f9fafb;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card blockquote {
  font-style: italic;
  color: #374151;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.author {
  font-size: 0.875rem;
  color: #6b7280;
}

.expert-opinion {
  background: linear-gradient(135deg, #fdf2f8, #f3e8ff);
  padding: 3rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid #fce7f3;
}

.expert-opinion h3 {
  color: #be185d;
  margin-bottom: 1.5rem;
}

.expert-opinion blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #374151;
  margin-bottom: 1.5rem;
}

.expert {
  color: #ec4899;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.price-box {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  max-width: 400px;
  margin: 0 auto 2rem;
}

.discount-label {
  font-size: 0.875rem;
  opacity: 0.75;
  margin-bottom: 0.5rem;
}

.price-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.original-price {
  font-size: 1.5rem;
  text-decoration: line-through;
  opacity: 0.75;
}

.sale-price {
  font-size: 2.5rem;
  font-weight: 700;
}

.discount-info {
  font-size: 0.875rem;
  opacity: 0.75;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.guarantees {
  font-size: 0.875rem;
  opacity: 0.75;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;
}

.contact-info p {
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #9ca3af;
}

/* Page Header */
.page-header {
  background: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.back-link {
  color: #ec4899;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #be185d;
}

/* Page Content */
.page-content {
  padding: 60px 0;
  background: #f9fafb;
  min-height: calc(100vh - 80px);
}

.page-title {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title h1 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1rem;
}

.page-title p {
  font-size: 1.125rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

.content-card {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.content-card h2 {
  color: #111;
  margin-bottom: 2rem;
}

/* Ingredients */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ingredient-badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  margin-top: 2px;
}

.ingredient-badge.core {
  background: #dbeafe;
  color: #1e40af;
}
.ingredient-badge.antioxidant {
  background: #dcfce7;
  color: #166534;
}
.ingredient-badge.natural {
  background: #e9d5ff;
  color: #7c3aed;
}
.ingredient-badge.soothing {
  background: #fce7f3;
  color: #be185d;
}
.ingredient-badge.nutrition {
  background: #fef3c7;
  color: #d97706;
}
.ingredient-badge.protection {
  background: #e0e7ff;
  color: #4338ca;
}

.ingredient-info h3 {
  font-size: 1.125rem;
  color: #111;
  margin-bottom: 0.25rem;
}

.ingredient-info p {
  color: #666;
  font-size: 0.9rem;
}

/* Usage Steps */
.usage-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-number {
  width: 32px;
  height: 32px;
  background: #ec4899;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: #111;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #666;
}

/* Warning Card */
.warning-card {
  border-left: 4px solid #f59e0b;
}

.warning-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.warning-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check {
  color: #10b981;
  font-weight: 600;
  margin-top: 2px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ec4899;
  margin-bottom: 0.5rem;
}

.stat-stars {
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: #666;
  font-weight: 500;
}

/* Detailed Testimonials */
.detailed-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.testimonial-detailed {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.user-info h3 {
  color: #111;
  margin-bottom: 0.25rem;
}

.user-info p {
  color: #666;
  font-size: 0.875rem;
}

.rating {
  font-size: 1rem;
}

.testimonial-detailed blockquote {
  font-style: italic;
  color: #374151;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.before-after {
  background: #fce7f3;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.875rem;
}

.before-after strong {
  color: #be185d;
}

/* Expert Section */
.expert-section {
  margin-bottom: 3rem;
}

.expert-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #111;
}

.expert-card {
  background: linear-gradient(135deg, #fdf2f8, #f3e8ff);
  padding: 3rem;
  border-radius: 12px;
  border: 2px solid #fce7f3;
  text-align: center;
}

.expert-card blockquote {
  font-size: 1.125rem;
  font-style: italic;
  color: #374151;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.expert-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.expert-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.expert-details {
  text-align: left;
}

.expert-name {
  font-weight: 600;
  color: #ec4899;
  margin-bottom: 0.25rem;
}

.expert-title,
.expert-education {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.25rem;
}

/* Page CTA */
.page-cta {
  text-align: center;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.page-cta h3 {
  color: #111;
  margin-bottom: 1rem;
}

.page-cta p {
  color: #666;
  margin-bottom: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ingredients-grid {
    grid-template-columns: 1fr;
  }

  .detailed-testimonials {
    grid-template-columns: 1fr;
  }

  .expert-info {
    flex-direction: column;
    text-align: center;
  }

  .expert-details {
    text-align: center;
  }

  .container {
    padding: 0 15px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .cta-section h2 {
    font-size: 2rem;
  }

  .content-card {
    padding: 1.5rem;
  }

  .page-cta {
    padding: 2rem;
  }
}

/* Support Page Styles 추가 */

/* Quick Help Section */
.quick-help-section {
  margin-bottom: 4rem;
}

.quick-help-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #111;
}

.quick-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.help-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.help-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.help-card h3 {
  color: #111;
  margin-bottom: 0.5rem;
}

.help-card p {
  color: #666;
  margin-bottom: 0.25rem;
}

.help-time {
  font-size: 0.875rem;
  color: #ec4899;
  font-weight: 500;
  margin-bottom: 1.5rem !important;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 4rem;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: #111;
}

.faq-categories {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.faq-category {
  padding: 10px 20px;
  border: 2px solid #e5e7eb;
  background: white;
  color: #666;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.faq-category.active,
.faq-category:hover {
  border-color: #ec4899;
  background: #ec4899;
  color: white;
}

.faq-content {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-group {
  display: none;
}

.faq-group.active {
  display: block;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f9fafb;
}

.faq-question h3 {
  margin: 0;
  color: #111;
  font-size: 1.125rem;
}

.faq-toggle {
  font-size: 1.5rem;
  color: #ec4899;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Contact Form Section */
.contact-form-section {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}

.contact-form-section h2 {
  text-align: center;
  color: #111;
  margin-bottom: 1rem;
}

.contact-form-section > p {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ec4899;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group small {
  display: block;
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-label a {
  color: #ec4899;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.btn-large {
  width: 100%;
  padding: 16px;
  font-size: 1.125rem;
  font-weight: 600;
}

/* Operation Info */
.operation-info {
  margin-bottom: 2rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
  color: #111;
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.info-card p {
  margin-bottom: 0.5rem;
  color: #666;
}

.info-card p strong {
  color: #374151;
}

.info-card .note {
  font-size: 0.875rem;
  color: #ec4899;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
}

.error-message {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.success-message {
  background: #dcfce7;
  color: #166534;
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  text-align: center;
}

/* About Page Styles 추가 */

/* About Hero Section */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.about-hero-content h1 {
  font-size: 2.5rem;
  color: #111;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.6;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Mission & Vision Section */
.mission-vision-section {
  margin-bottom: 5rem;
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.mission-card,
.vision-card {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.mission-card {
  border-top: 4px solid #ec4899;
}

.vision-card {
  border-top: 4px solid #8b5cf6;
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.mission-card h3,
.vision-card h3 {
  color: #111;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.mission-card p,
.vision-card p {
  color: #666;
  line-height: 1.6;
}

/* Company Story Section */
.company-story {
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 5rem;
}

.company-story h2 {
  text-align: center;
  color: #111;
  margin-bottom: 3rem;
}

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-text p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.story-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Timeline Section */
.timeline-section {
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 5rem;
}

.timeline-section h2 {
  text-align: center;
  color: #111;
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ec4899;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: #ec4899;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.125rem;
  min-width: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-content {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  margin: 0 2rem;
  flex: 1;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
  color: #111;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #666;
  margin: 0;
}

/* Values Section */
.values-section {
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 5rem;
}

.values-section h2 {
  text-align: center;
  color: #111;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.value-card {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: #111;
  margin-bottom: 1rem;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Team Section */
.team-section {
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 5rem;
}

.team-section h2 {
  text-align: center;
  color: #111;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

.team-member {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.member-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}

.member-info h3 {
  color: #111;
  margin-bottom: 0.5rem;
}

.member-position {
  color: #ec4899;
  font-weight: 600;
  margin-bottom: 1rem !important;
}

.member-description {
  color: #666;
  line-height: 1.6;
}

/* Certifications Section */
.certifications-section {
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 5rem;
}

.certifications-section h2 {
  text-align: center;
  color: #111;
  margin-bottom: 3rem;
}

.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.cert-category h3 {
  color: #111;
  margin-bottom: 2rem;
  text-align: center;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
}

.cert-icon {
  font-size: 2rem;
  margin-top: 0.25rem;
}

.cert-info h4 {
  color: #111;
  margin-bottom: 0.25rem;
}

.cert-info p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* R&D Section */
.rd-section {
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 5rem;
}

.rd-section h2 {
  text-align: center;
  color: #111;
  margin-bottom: 3rem;
}

.rd-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
}

.rd-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  background: #f9fafb;
  border-radius: 12px;
}

.stat-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ec4899;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  color: #666;
  font-weight: 500;
}

.rd-description h3 {
  color: #111;
  margin-bottom: 1rem;
}

.rd-description p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.rd-features {
  list-style: none;
  padding: 0;
}

.rd-features li {
  color: #666;
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.rd-features li::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* CSR Section */
.csr-section {
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 5rem;
}

.csr-section h2 {
  text-align: center;
  color: #111;
  margin-bottom: 3rem;
}

.csr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.csr-item {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.csr-item:hover {
  transform: translateY(-5px);
}

.csr-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.csr-item h3 {
  color: #111;
  margin-bottom: 1rem;
}

.csr-item p {
  color: #666;
  line-height: 1.6;
}

/* Company Contact Section */
.company-contact {
  background: white;
  padding: 4rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 5rem;
}

.company-contact h2 {
  text-align: center;
  color: #111;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-info {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 12px;
}

.contact-info h3 {
  color: #111;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-details p {
  color: #666;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.contact-details p strong {
  color: #374151;
}

/* About CTA Section */
.about-cta {
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  color: white;
  padding: 4rem;
  border-radius: 12px;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-content .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .about-hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .about-hero-content h1 {
    font-size: 2rem;
    text-align: center;
  }

  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
    padding-left: 50px;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    min-width: 60px;
    padding: 0.5rem;
    font-size: 0.9rem;
  }

  .timeline-content {
    margin: 0;
  }

  .cert-grid {
    grid-template-columns: 1fr;
  }

  .team-member {
    flex-direction: column;
    text-align: center;
  }

  .rd-content {
    grid-template-columns: 1fr;
  }

  .rd-stats {
    grid-template-columns: 1fr 1fr;
  }

  .quick-help-grid {
    grid-template-columns: 1fr;
  }

  .faq-categories {
    flex-direction: column;
    align-items: center;
  }

  .faq-category {
    width: 200px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-section {
    padding: 2rem 1.5rem;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 1.5rem;
  }

  .about-hero-content h1 {
    font-size: 1.75rem;
  }

  .company-story,
  .timeline-section,
  .values-section,
  .team-section,
  .certifications-section,
  .rd-section,
  .csr-section,
  .company-contact {
    padding: 2rem 1.5rem;
  }

  .timeline-item {
    padding-left: 40px;
  }

  .timeline-year {
    min-width: 50px;
    font-size: 0.8rem;
  }

  .rd-stats {
    grid-template-columns: 1fr;
  }

  .about-cta {
    padding: 2rem 1.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .help-card {
    padding: 1.5rem;
  }

  .faq-question {
    padding: 1rem;
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .contact-form-section {
    padding: 1.5rem 1rem;
  }
}
