body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  padding-top: 70px;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e3a5f !important;
}

.navbar-light .navbar-nav .nav-link {
  color: #4a5568;
  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: #1e3a5f;
}

.hero-section {
  position: relative;
  margin-top: -70px;
  padding-top: 70px;
}

.hero-image {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(30, 58, 95, 0.9), rgba(30, 58, 95, 0.6));
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.btn-primary {
  background-color: #1e3a5f;
  border-color: #1e3a5f;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #2c5282;
  border-color: #2c5282;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.btn-outline-primary {
  color: #1e3a5f;
  border-color: #1e3a5f;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #1e3a5f;
  border-color: #1e3a5f;
  color: #ffffff;
}

.page-header {
  padding: 5rem 0 3rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: #1e3a5f;
  line-height: 1.3;
}

.lead {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.7;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.rounded {
  border-radius: 0.5rem;
}

.cta-section {
  background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
  padding: 5rem 0;
}

.footer {
  margin-top: 4rem;
}

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

.footer a:hover {
  color: #ffffff !important;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1e3a5f;
  color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-consent-content p {
  margin-bottom: 1rem;
  color: #ffffff;
}

.cookie-consent-content a {
  color: #ffffff;
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-preferences {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  max-width: 500px;
  width: 90%;
}

.cookie-preferences-content h5 {
  color: #1e3a5f;
}

.cookie-preferences-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.thank-you-section {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  padding: 4rem 0;
}

.policy-content {
  font-size: 1rem;
  line-height: 1.8;
}

.policy-content h2 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 2px solid #e2e8f0;
}

.policy-content h2:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.policy-content ul {
  margin-left: 1.5rem;
}

.policy-content li {
  margin-bottom: 0.75rem;
}

@media (max-width: 768px) {
  .hero-image img {
    height: 400px;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  .display-3 {
    font-size: 2rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .cookie-consent-buttons {
    flex-direction: column;
  }

  .cookie-consent-buttons .btn {
    width: 100%;
  }
}

.feature-box,
.info-box,
.habit-card,
.mission-card,
.timeline-content,
.advisor-info,
.principle-card,
.timeline-stage,
.faq-item,
.info-card,
.testimonial-card,
.product-card {
  transition: all 0.3s ease;
}

.feature-box:hover,
.info-box:hover,
.habit-card:hover,
.mission-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.accordion .card-header {
  cursor: pointer;
}

.accordion .btn-link {
  text-decoration: none;
  color: #1e3a5f;
  font-weight: 600;
}

.accordion .btn-link:hover {
  text-decoration: none;
  color: #2c5282;
}
