/* Global Styles */
:root {
  --primary: #047857;
  --secondary: #FDE68A;
  --dark: #111827;
  --light-gray: #F3F4F6;
  --accent: #F43F5E;
  --container-width: 1200px;
  --header-height: 70px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

section[id] {
  scroll-margin-top: 40px;
}

body {
  font-family: 'Roboto', 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #fff;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #036745;
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--dark);
}

.btn-secondary:hover {
  background-color: #fcd34d;
}

.section-padding {
  padding: 5rem 0;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: var(--header-height);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.burger-menu {
  display: none;
}

.nav-checkbox {
  display: none;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin-left: 30px;
}

nav ul li a {
  color: var(--dark);
  font-weight: 500;
}

nav ul li a:hover {
  color: var(--primary);
}

/* Hero Section */
.hero {
  height: 80vh;
  min-height: 500px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('./img/OQxRL.jpg');
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  background-color: white;
}

.about-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services Section */
.services {
  background-color: var(--light-gray);
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.card-image {
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

/* Benefits Section */
.benefits {
  background-color: white;
}

.benefits-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.benefit-item {
  text-align: center;
  padding: 20px;
}

.benefit-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Reviews Section */
.reviews {
  background-color: var(--light-gray);
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.review-card {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.review-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.review-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
}

.review-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author {
  font-weight: 500;
}

.review-text {
  font-style: italic;
}

/* FAQ Section */
.faq {
  background-color: white;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  position: relative;
  padding: 15px;
  cursor: pointer;
  font-weight: 500;
  background-color: var(--light-gray);
  transition: background-color 0.3s ease;
}

.faq-question label {
  display: block;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.faq-checkbox {
  display: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 15px;
  background-color: white;
}

.faq-checkbox:checked + .faq-question {
  background-color: var(--primary);
  color: white;
}

.faq-checkbox:checked + .faq-question::after {
  content: "-";
}

.faq-checkbox:checked ~ .faq-answer {
  max-height: 300px;
  padding: 15px;
}

/* Form Section */
.contact-form {
  background-color: var(--light-gray);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

.form-group select {
  background-color: white;
}

/* Style the select dropdown options */
.form-group select option {
  background-color: white;
  color: var(--dark);
  padding: 10px;
}

/* Checkbox styling */
.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input[type="checkbox"] {
  margin-right: 10px;
  width: auto;
}

.error-message {
  color: var(--accent);
  margin-top: 5px;
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  background-color: var(--primary);
  color: white;
  text-align: center;
}

.cta h2 {
  margin-bottom: 1.5rem;
}

.cta .btn {
  background-color: white;
  color: var(--primary);
  margin-top: 1rem;
}

.cta .btn:hover {
  background-color: var(--secondary);
}

/* Footer */
footer {
  background-color: var(--dark);
  color: white;
  padding: 3rem 0;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: var(--secondary);
  font-size: 1.2rem;
}

.footer-section p {
  margin-bottom: 10px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
}

.footer-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  max-width: 90%;
  width: 400px;
  display: none;
}

.cookie-popup.show {
  display: block;
}

.cookie-popup p {
  margin-bottom: 15px;
}

.cookie-popup-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Policy Pages */
.policy-page {
  padding: 8rem 0 3rem;
}

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.policy-container h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.policy-container h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-container p {
  margin-bottom: 1rem;
}

.policy-container ul {
  margin-bottom: 1rem;
  padding-left: 20px;
}

.policy-container ul li {
  margin-bottom: 0.5rem;
}

/* Thank You Page */
.thank-you {
  text-align: center;
  margin: 8rem auto 3rem;
  max-width: 600px;
  padding: 30px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.thank-you h1 {
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  /* Burger Menu for Mobile */
  .burger-menu {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1002;
  }
  
  .burger-menu label {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    cursor: pointer;
  }
  
  .burger-menu span,
  .burger-menu span:before,
  .burger-menu span:after {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--dark);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
  }
  
  .burger-menu span {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .burger-menu span:before {
    content: "";
    top: -8px;
  }
  
  .burger-menu span:after {
    content: "";
    bottom: -8px;
  }
  
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding-top: var(--header-height);
  }
  
  nav ul {
    flex-direction: column;
    padding: 20px;
  }
  
  nav ul li {
    margin: 0 0 20px 0;
  }
  
  .nav-checkbox:checked ~ nav {
    right: 0;
  }
  
  .nav-checkbox:checked + .burger-menu span {
    background-color: transparent;
  }
  
  .nav-checkbox:checked + .burger-menu span:before {
    top: 0;
    transform: rotate(45deg);
  }
  
  .nav-checkbox:checked + .burger-menu span:after {
    bottom: 0;
    transform: rotate(-45deg);
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .form-container {
    padding: 20px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
} 