/* Reset and Base Styles */
* {
  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: "Arial", sans-serif;
  line-height: 1.6;
  color: #1e1e1e;
  background-color: #fefbf7;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: #5e2ca5;
  transition: all 0.3s ease;
}

a:hover {
  color: #fca311;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 20px;
  line-height: 1.2;
}

section {
  padding: 60px 0;
}

/* Header Styles */
.site-header {
  position: sticky;
  top: 0;
  background-color: #fefbf7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo a {
  font-size: 24px;
  font-weight: bold;
  color: #5e2ca5;
  text-decoration: none;
}

.nav-container {
  position: relative;
}

.menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 21px;
  position: relative;
}

.menu-line {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #5e2ca5;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.menu-line:nth-child(1) {
  top: 0;
}

.menu-line:nth-child(2) {
  top: 9px;
}

.menu-line:nth-child(3) {
  top: 18px;
}

.menu-toggle:checked + .menu-icon .menu-line:nth-child(1) {
  top: 9px;
  transform: rotate(135deg);
}

.menu-toggle:checked + .menu-icon .menu-line:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-toggle:checked + .menu-icon .menu-line:nth-child(3) {
  top: 9px;
  transform: rotate(-135deg);
}

.main-nav ul {
  display: flex;
  list-style: none;
}

.main-nav ul li {
  margin-left: 20px;
}

.main-nav ul li a {
  text-decoration: none;
  color: #1e1e1e;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover {
  color: #5e2ca5;
}

/* Hero Section */
.hero-section {
  height: 80vh;
  background: url("img/O3Uif.jpg") no-repeat center center/cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 800px;
}

.hero-section h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-section h2 {
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 400;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #5e2ca5 0%, #fca311 100%);
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(94, 44, 165, 0.4);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(94, 44, 165, 0.6);
  color: #fff;
}

/* About Section */
.about-section {
  background-color: #fff;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.benefit-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 50%;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-card h3 {
  color: #5e2ca5;
  margin-bottom: 15px;
}

/* Services Section */
.services-section {
  background-color: #f9f5f0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  padding: 20px 20px 10px;
  color: #5e2ca5;
}

.service-card p {
  padding: 0 20px 20px;
}

.service-link {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #5e2ca5 0%, #fca311 100%);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(94, 44, 165, 0.3);
  color: #fff;
}

/* Testimonials Section */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  margin-bottom: 15px;
  font-style: italic;
}

.testimonial-author {
  text-align: right;
  font-size: 0.9em;
}

/* FAQ Section */
.faq-section {
  background-color: #f9f5f0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-toggle {
  display: none;
}

.faq-question {
  display: block;
  padding: 20px;
  background-color: #fff;
  color: #1e1e1e;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background-color: #f9f5f0;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #5e2ca5;
  transition: all 0.3s ease;
}

.faq-toggle:checked + .faq-question::after {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f9f5f0;
}

.faq-toggle:checked + .faq-question + .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 20px;
}

/* Form Section */
.form-section {
  background-color: #fff;
}

.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 0 2px #f0f0f0, 0 0 0 4px #fff, 0 0 0 5px #5e2ca5;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
  outline: none;
  background-color: #fff;
}

.form-group select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%235e2ca5" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
}

.form-group select option {
  background-color: #f9f5f0;
  color: #1e1e1e;
  padding: 10px;
}

.form-group label {
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 16px;
  color: #777;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #5e2ca5;
  box-shadow: 0 0 0 2px rgba(94, 44, 165, 0.2);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]):valid + label {
  top: -10px;
  left: 15px;
  font-size: 12px;
  background-color: #fff;
  padding: 0 5px;
  color: #5e2ca5;
}

.form-group input::placeholder {
  color: transparent;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-right: 10px;
}

.checkbox-group label {
  position: static;
  font-size: 14px;
  color: #1e1e1e;
}

.submit-button {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #5e2ca5 0%, #fca311 100%);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(94, 44, 165, 0.3);
}

/* Contact Section */
.contact-section {
  background-color: #f9f5f0;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info {
  flex: 1 1 300px;
}

.contact-map {
  flex: 2 1 400px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item h3 {
  color: #5e2ca5;
  margin-bottom: 10px;
}

/* Footer Styles */
.site-footer {
  background-color: #1e1e1e;
  color: #fff;
  padding: 50px 0 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer-info,
.footer-contact,
.footer-links {
  flex: 1 1 300px;
  margin-bottom: 30px;
}

.footer-logo p {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 10px;
}

.footer-description p {
  color: #ccc;
}

.footer-contact h3,
.footer-links h3 {
  color: #fca311;
  margin-bottom: 20px;
}

.footer-contact p {
  margin-bottom: 10px;
}

.footer-contact a {
  color: #ccc;
}

.footer-contact a:hover {
  color: #fca311;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #fca311;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #ccc;
}

/* Cookie Consent */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 20px;
  z-index: 9999;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-content p {
  flex: 1;
  margin-right: 20px;
  margin-bottom: 10px;
}

.cookie-button {
  background: linear-gradient(135deg, #5e2ca5 0%, #fca311 100%);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(94, 44, 165, 0.3);
}

/* Legal Pages */
.legal-section {
  padding: 60px 0;
}

.legal-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  color: #5e2ca5;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content h3 {
  color: #fca311;
  margin-top: 20px;
  margin-bottom: 10px;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 15px;
}

.legal-content ul {
  margin-left: 20px;
}

/* Thank You Page */
.thank-you-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 60px 0;
}

.thank-you-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-box {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 0 2px #f0f0f0, 0 0 0 4px #fff, 0 0 0 5px #5e2ca5;
  text-align: center;
}

.thank-you-content {
  margin-top: 20px;
}

.thank-you-actions {
  margin-top: 30px;
}

.back-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, #5e2ca5 0%, #fca311 100%);
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(94, 44, 165, 0.3);
  color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    width: 250px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .menu-toggle:checked ~ .main-nav {
    max-height: 500px;
  }

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav ul li {
    margin: 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .main-nav ul li a {
    display: block;
    padding: 15px;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .hero-section h2 {
    font-size: 18px;
  }

  .about-content {
    flex-direction: column-reverse;
  }

  .contact-content {
    flex-direction: column;
  }

  .footer-content {
    flex-direction: column;
  }
}
