:root {
  --primary-color: #1a4d7a;
  --primary-dark: #133856;
  --secondary-color: #e8f4f8;
  --accent-color: #5a9fb8;
  --text-dark: #2c3e50;
  --text-light: #5d6d7e;
  --background-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #dee2e6;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.navbar-brand {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: -0.5px;
}

.navbar-light .navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.hero-section {
  padding: 100px 0 80px;
  background-color: var(--secondary-color);
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-image {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 3rem;
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 77, 122, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.feature-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-card img {
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.feature-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.texture-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.texture-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.texture-content {
  padding: 2rem;
  background: var(--white);
}

.texture-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.texture-text {
  color: var(--text-light);
  font-size: 1rem;
}

.aroma-card {
  background: var(--white);
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.aroma-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.aroma-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.aroma-text {
  color: var(--text-light);
  font-size: 0.95rem;
}

.routine-card {
  background: var(--secondary-color);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  height: 100%;
}

.routine-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.3;
  margin-bottom: 0.5rem;
}

.routine-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.routine-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.product-tips {
  list-style: none;
  padding-left: 0;
}

.product-tips li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  font-size: 1.05rem;
}

.product-tips li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.ingredient-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.ingredient-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.ingredient-name {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.ingredient-desc {
  color: var(--text-light);
  font-size: 0.9rem;
}

.value-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.value-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.value-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-text {
  color: var(--text-light);
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.testimonial-author {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.faq-item {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.faq-answer {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  color: var(--white);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.25rem;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.btn-light {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-color);
  font-weight: 600;
}

.btn-light:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--primary-color);
}

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-brand {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.9rem;
}

.page-header {
  background: linear-gradient(135deg, var(--secondary-color) 0%, var(--white) 100%);
  padding: 120px 0 80px;
  text-align: center;
}

.page-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
}

.mission-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.mission-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.mission-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
}

.principle-card {
  background: var(--secondary-color);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  height: 100%;
}

.principle-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  opacity: 0.2;
  margin-bottom: 1rem;
}

.principle-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.principle-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.info-box {
  background: var(--secondary-color);
  padding: 3rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.info-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.info-text {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.info-text:last-child {
  margin-bottom: 0;
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(26, 77, 122, 0.15);
}

.contact-form label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.contact-info-section {
  background: var(--secondary-color);
  padding: 2.5rem;
  border-radius: 12px;
}

.contact-info-item {
  margin-bottom: 2rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.contact-info-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.policy-content {
  background: var(--white);
}

.policy-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content > .policy-title:first-child {
  margin-top: 0;
}

.policy-subtitle {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-text {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.policy-list {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.policy-list li {
  margin-bottom: 0.5rem;
}

.policy-content a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-text {
  color: var(--white);
  margin: 0;
  font-size: 0.95rem;
}

.cookie-text a {
  color: var(--white);
  text-decoration: underline;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  color: var(--white);
}

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

  .section-title {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.25rem;
  }

  .cta-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .section-padding {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .page-header {
    padding: 80px 0 50px;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .cta-section {
    padding: 50px 0;
  }

  .cta-title {
    font-size: 1.75rem;
  }

  .cookie-banner .text-md-right {
    text-align: left;
    margin-top: 1rem;
  }
}
