:root {
  --primary-color: #ffd700;
  --primary-dark: #ffa500;
  --secondary-color: #2c3e50;
  --text-color: #2c3e50;
  --text-light: #555555;
  --bg-light: #f8f9fa;
  --white: #ffffff;
  --border-color: #e0e0e0;
  --success-color: #28a745;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
}

.navbar {
  box-shadow: var(--shadow);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--secondary-color);
  font-weight: 700;
}

.navbar-brand:hover {
  color: var(--primary-dark);
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  margin-left: 1rem;
  transition: color 0.3s;
}

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

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

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

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

.btn-secondary {
  background-color: var(--text-light);
  border-color: var(--text-light);
  color: var(--white);
}

.hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

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

.why-section,
.benefits-section,
.services-preview,
.target-audience,
.testimonials-section {
  padding: 5rem 0;
}

.why-section {
  background-color: var(--white);
}

.benefits-section {
  background-color: var(--bg-light);
}

.services-preview {
  background-color: var(--white);
}

.target-audience {
  background-color: var(--bg-light);
}

.testimonials-section {
  background-color: var(--white);
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 3rem;
}

.feature-card,
.service-card,
.audience-card,
.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.3s;
  height: 100%;
}

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

.icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.feature-card h3,
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
}

.benefits-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  font-size: 1.1rem;
}

.benefits-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-weight: bold;
  font-size: 1.5rem;
}

.service-card img {
  border-radius: 15px 15px 0 0;
  margin: -2rem -2rem 1.5rem -2rem;
  width: calc(100% + 4rem);
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 0 1rem;
}

.audience-card {
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  border-left: 4px solid var(--primary-color);
}

.audience-card h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.testimonial-card {
  background: var(--bg-light);
  border-left: 4px solid var(--primary-color);
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.testimonial-author strong {
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
}

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

.cta-section h2 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.cta-section .lead {
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.cta-section .btn-primary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.cta-section .btn-primary:hover {
  background-color: var(--text-color);
  border-color: var(--text-color);
}

.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 3rem 0 1rem;
  margin-top: 5rem;
}

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer p {
  color: #cccccc;
  margin-bottom: 0.5rem;
}

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

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

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

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

.page-header {
  padding: 4rem 0 2rem;
  background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.about-content,
.services-detail,
.contact-section {
  padding: 4rem 0;
}

.value-card {
  text-align: center;
  padding: 2rem 1rem;
}

.value-card h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.location-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.contact-info-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  margin: 2rem 0;
}

.contact-info-box h5 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-detail-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
}

.service-detail-card h2 {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.service-detail-card h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin: 1.5rem 0 1rem;
}

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

.service-features li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
}

.service-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-weight: bold;
  font-size: 1.5rem;
}

.contact-info-card {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-color);
}

.contact-info-card h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.contact-form-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.form-group label {
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.form-check-label a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.thank-you-section {
  padding: 5rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thank-you-card {
  background: var(--white);
  padding: 4rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--success-color) 0%, #20c997 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3rem;
  color: var(--white);
}

.next-steps {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

.step-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.step-card h4 {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.policy-content {
  padding: 4rem 0;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.policy-section h4 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
  font-weight: 600;
}

.policy-section ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

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

.disclaimer-important {
  background: #fff3cd;
  padding: 2rem;
  border-radius: 15px;
  border-left: 4px solid #ffa500;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-content p {
  margin: 0;
  flex: 1;
  min-width: 250px;
}

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

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

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

  h2 {
    font-size: 1.75rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }
}
