/* General Styles */
:root {
  --main-bg-start: #fceeb5;
  --main-bg-end: #fdd8d3;
  --accent-purple: #7a1c85;
  --accent-orange: #ffa36c;
  --text-color: #1a1a1a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 40px;
}

body {
  font-family: "Arial", sans-serif;
  background: linear-gradient(135deg, var(--main-bg-start), var(--main-bg-end));
  color: var(--text-color);
  line-height: 1.6;
  min-height: 100vh;
}

section[id] {
  scroll-margin-top: 40px;
  padding: 60px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  color: var(--accent-purple);
}

a {
  color: var(--accent-purple);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-orange);
}

/* Header & Navigation */
header {
  background-color: rgba(255, 255, 255, 0.9);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--accent-purple);
}

.hamburger {
  display: none;
}

.hamburger-label {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background-color: rgba(122, 28, 133, 0.1);
}

/* Hero Section */
.hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  margin: 0 auto;
  text-align: center;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background-color: #fff;
  color: var(--accent-purple);
  padding: 10px 25px;
  border: 2px solid var(--accent-purple);
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: var(--accent-purple);
  color: white;
  transform: translateY(-3px);
}

/* About Section */
.about {
  text-align: center;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-img {
  height: 200px;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

/* Benefits Section */
.benefits {
  background-color: rgba(255, 255, 255, 0.7);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.benefit-item {
  text-align: center;
  padding: 20px;
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent-orange);
  margin-bottom: 15px;
}

/* Testimonials */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;

  margin: 0 auto;
}

.testimonial {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 15px;
}

.testimonial-author {
  font-weight: bold;
  color: var(--accent-purple);
}

/* Contact Form */
.contact-form-section {
  background-color: rgba(255, 255, 255, 0.7);
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-purple);
}

select option {
  background-color: white;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
  margin-top: 5px;
}

.form-btn {
  background-color: white;
  color: var(--accent-purple);
  border: 2px solid var(--accent-purple);
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

.form-btn:hover {
  background-color: var(--accent-purple);
  color: white;
}

/* FAQ Section */
.faq-section {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  background-color: white;
  padding: 15px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
}

.faq-question:after {
  content: "+";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
}

.faq-checkbox {
  display: none;
}

.faq-answer {
  background-color: #f9f9f9;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-checkbox:checked ~ .faq-answer {
  padding: 15px;
  max-height: 500px;
}

.faq-checkbox:checked + .faq-question:after {
  content: "−";
}

/* Contact Info */
.contact-info {
  text-align: center;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.contact-item {
  flex: 1 1 250px;
  max-width: 300px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  color: var(--accent-orange);
  font-size: 2rem;
  margin-bottom: 15px;
}

/* Footer */
footer {
  background-color: var(--accent-purple);
  color: white;
  padding: 40px 0 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: white;
}

.footer-links h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.copyright {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
}

/* Cookie Popup */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  max-width: 1200px;
  margin: 0 auto;
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

.cookie-popup.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-text {
  flex: 1;
  padding-right: 20px;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--accent-purple);
  color: white;
  border: none;
}

.cookie-accept:hover {
  background-color: #641470;
}

.cookie-more {
  background-color: transparent;
  border: 1px solid #ddd;
}

.cookie-more:hover {
  background-color: #f5f5f5;
}

/* Legal Pages */
.legal-page {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.legal-page h1 {
  text-align: center;
  margin-bottom: 30px;
}

.legal-page h2 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-page p,
.legal-page ul {
  margin-bottom: 20px;
}

.legal-page ul {
  padding-left: 20px;
}

/* Thank You Page */
.thank-you {
  max-width: 600px;
  margin: 80px auto;
  padding: 40px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.thank-you h1 {
  color: var(--accent-purple);
  margin-bottom: 20px;
}

.thank-you p {
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Hamburger Menu */
  .hamburger {
    display: block;
    position: absolute;
    opacity: 0;
  }

  .hamburger-label {
    display: block;
    z-index: 1001;
  }

  nav {
    position: fixed;
    top: 0;
    right: -100%;
    background-color: white;
    width: 80%;
    height: 100vh;
    padding-top: 70px;
    transition: right 0.3s ease;
  }

  .hamburger:checked ~ nav {
    right: 0;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }

  /* Section Adjustments */
  section {
    padding: 40px 15px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .services-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-details {
    flex-direction: column;
    align-items: center;
  }

  .contact-item {
    width: 100%;
  }

  .cookie-popup {
    flex-direction: column;
  }

  .cookie-text {
    margin-bottom: 15px;
    padding-right: 0;
  }
}
