/* Global Styles */
:root {
  --ocean-indigo: #27374D;
  --burnt-tangerine: #FF7E5F;
  --pistachio-mint: #A8D5BA;
  --clay-beige: #ECE2D0;
  --white-sand: #FFFFFF;
  --black-opal: #1C1C1C;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--ocean-indigo);
  background-color: var(--clay-beige);
}

a {
  color: var(--ocean-indigo);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--burnt-tangerine);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 15px;
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--burnt-tangerine);
  color: var(--white-sand);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #e6674a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.btn-secondary {
  background-color: var(--pistachio-mint);
  color: var(--ocean-indigo);
}

.btn-secondary:hover {
  background-color: #96c3aa;
}

/* Header Styles */
header {
  background-color: var(--ocean-indigo);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white-sand);
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  list-style: none;
  margin-left: 25px;
}

.nav-menu a {
  color: var(--white-sand);
  font-weight: 500;
  position: relative;
}

.nav-menu a:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background-color: var(--burnt-tangerine);
  transition: width 0.3s ease;
}

.nav-menu a:hover:after {
  width: 100%;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--white-sand);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
  color: var(--ocean-indigo);
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 50%;
  max-width: 600px;
  border-radius: 8px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.hero-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s 0.3s forwards;
}

.hero-btn {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s 0.6s forwards;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: var(--white-sand);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title:after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: var(--burnt-tangerine);
  margin: 15px auto 0;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

/* Services Section */
.services {
  padding: 80px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--white-sand);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 20px rgba(0,0,0,0.15);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.1);
}

.service-content {
  padding: 25px;
}

.service-title {
  margin-bottom: 15px;
}

/* Benefits Section */
.benefits {
  padding: 80px 0;
  background-color: var(--ocean-indigo);
  color: var(--white-sand);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit-item {
  text-align: center;
  padding: 30px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background-color: var(--burnt-tangerine);
  border-radius: 50%;
  font-size: 32px;
}

/* Testimonial Section */
.testimonials {
  padding: 80px 0;
  background-color: var(--white-sand);
}

.testimonial-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-slide {
  display: none;
  padding: 30px;
  text-align: center;
  animation: fadeInOut 8s infinite;
}

.testimonial-slide:nth-child(1) {
  animation-delay: 0s;
}

.testimonial-slide:nth-child(2) {
  animation-delay: 8s;
}

.testimonial-slide:nth-child(3) {
  animation-delay: 16s;
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  font-weight: 600;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background-color: var(--clay-beige);
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pricing-card {
  background-color: var(--white-sand);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 300px;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-header {
  background-color: var(--ocean-indigo);
  color: var(--white-sand);
  padding: 20px;
  text-align: center;
}

.pricing-features {
  padding: 30px 20px;
  list-style: none;
}

.pricing-features li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-cta {
  text-align: center;
  padding-bottom: 30px;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-color: var(--burnt-tangerine);
  color: var(--white-sand);
  text-align: center;
}

.cta-title {
  margin-bottom: 20px;
}

.cta-text {
  max-width: 700px;
  margin: 0 auto 30px;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background-color: var(--white-sand);
}

.accordion {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  margin-bottom: 30px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-question {
  color: var(--ocean-indigo);
  font-weight: 600;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--pistachio-mint);
}

.faq-answer {
  color: var(--ocean-indigo);
  line-height: 1.6;
}

/* Form Styles */
.form-section {
  padding: 80px 0;
  background-color: var(--white-sand);
}

.form-errors {
  margin-bottom: 20px;
  padding: 15px;
  background-color: rgba(255, 126, 95, 0.2);
  border-left: 4px solid var(--burnt-tangerine);
  border-radius: 4px;
}

.form-errors p {
  margin-bottom: 5px;
  color: #d32f2f;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f9f9f9;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-control {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  border: 2px solid var(--pistachio-mint);
  border-radius: 25px;
  background-color: var(--white-sand);
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--burnt-tangerine);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%2327374D'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input {
  margin-right: 10px;
}

/* Footer */
footer {
  padding: 50px 0 30px;
  background-color: var(--black-opal);
  color: var(--white-sand);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-title {
  margin-bottom: 20px;
  color: var(--burnt-tangerine);
}

.footer-contact li {
  margin-bottom: 10px;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
  list-style: none;
}

.footer-links a {
  color: var(--white-sand);
}

.footer-links a:hover {
  color: var(--burnt-tangerine);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

/* Policy Pages */
.policy-header {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-header:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(39, 55, 77, 0.7);
}

.policy-title {
  position: relative;
  color: var(--white-sand);
  z-index: 2;
}

.policy-content {
  padding: 60px 0;
}

.policy-card {
  background-color: var(--white-sand);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Thank You Page */
.thank-you {
  padding: 100px 0;
  text-align: center;
  background-color: var(--white-sand);
}

.thank-you-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background-color: var(--pistachio-mint);
  border-radius: 50%;
  font-size: 50px;
  color: var(--ocean-indigo);
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: -100vh; /* Use vh instead of px to ensure it's fully off-screen */
  left: 0;
  right: 0;
  background-color: var(--black-opal);
  color: var(--white-sand);
  padding: 20px;
  display: none; /* Hidden by default, JS will make it flex */
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  transition: bottom 0.5s ease-in-out;
}

.cookie-consent.active {
  bottom: 0;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  margin-right: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInOut {
  0%, 45% {
    opacity: 0;
    transform: translateY(20px);
  }
  10%, 35% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .pricing-container {
    flex-direction: column;
    align-items: center;
  }
  
  .pricing-card {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 80px 0 50px;
  }
  
  .hero-container {
    flex-direction: column-reverse;
  }
  
  .hero-content, 
  .hero-image {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--ocean-indigo);
    flex-direction: column;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    margin: 0;
    text-align: center;
    padding: 12px 0;
  }
  
  .service-grid {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .policy-header {
    height: 180px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .cookie-text {
    margin-bottom: 15px;
  }
  
  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}