/* Variables */
:root {
  --color-bg: #FFE5B4;
  --color-accent: #00FFD0;
  --color-heading: #4C3B4D;
  --color-text: #2C2C2C;
  --color-button: #C1FF72;
  --color-gradient-start: #FF69B4;
  --color-gradient-end: #00CED1;
  --border-radius: 16px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: var(--color-heading);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--color-heading);
  margin-bottom: 1rem;
  line-height: 1.3;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--color-button);
  color: var(--color-heading);
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

/* Header */
header {
  padding: 1rem 0;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo svg {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.logo-text {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--color-heading);
}

nav ul {
  display: flex;
  list-style: none;
}

nav li {
  margin-left: 20px;
}

.mobile-menu-toggle {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-content {
  max-width: 600px;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  padding: 5rem 0;
  background-color: white;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

/* Benefits Section */
.benefits {
  padding: 5rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.benefit-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
}

/* Services Section */
.services {
  padding: 5rem 0;
  background-color: white;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: linear-gradient(45deg, var(--color-gradient-start), var(--color-gradient-end));
  border-radius: var(--border-radius);
  padding: 2rem;
  color: white;
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  opacity: 0.9;
  z-index: 0;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  color: var(--color-heading);
}

.service-card p, .service-card .price {
  color: var(--color-text);
}

.service-card:hover {
  transform: translateY(-5px);
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
}

.testimonial-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2rem;
  padding: 1rem 0;
}

.testimonial-item {
  scroll-snap-align: start;
  min-width: 300px;
  flex: 1 0 100%;
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq {
  padding: 5rem 0;
  background-color: white;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.faq-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 1.5rem;
}

.faq-question {
  font-weight: bold;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
  cursor: pointer;
  position: relative;
}

.faq-answer {
  max-height: 1000px;
  opacity: 1;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  overflow: hidden;
}

/* CTA Section */
.cta {
  padding: 5rem 0;
  text-align: center;
  background: linear-gradient(45deg, var(--color-gradient-start), var(--color-gradient-end));
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.cta h2 {
  color: white;
}

.cta .btn {
  margin-top: 2rem;
}

/* Contact Form */
.contact-form {
  padding: 5rem 0;
  background-color: white;
  border-radius: var(--border-radius);
  margin: 2rem 0;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

input, select, textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-family: inherit;
}

.checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

/* Footer */
footer {
  background-color: white;
  padding: 3rem 0;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.footer-logo svg {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.legal-links {
  list-style: none;
}

.legal-links li {
  margin-bottom: 0.5rem;
}

.copyright {
  margin-top: 2rem;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 1rem;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-popup p {
  margin-right: 2rem;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .mobile-menu-toggle {
    display: block;
    cursor: pointer;
  }
  
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }
  
  nav.active {
    transform: translateY(0);
  }
  
  nav ul {
    flex-direction: column;
    text-align: center;
  }
  
  nav li {
    margin: 1rem 0;
  }
  
  .cookie-popup {
    flex-direction: column;
  }
  
  .cookie-popup p {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  /* Responsive adjustments */
  
  .about .container {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  section {
    padding: 3rem 0;
  }
  
  .benefit-item, .service-card, .testimonial-item {
    padding: 1.5rem;
  }
} 