html {
  height: 100%;
  min-height: 100%;
}
body {
  background: linear-gradient(135deg, #fdf5ff 0%, #f9ecff 50%, #fffbe7 100%);
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: 'Muli', sans-serif;
  color: #404040;
  padding-top: 60px;
  position: relative;
  min-height: 100%;
}


body::before,
body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  z-index: 0;
  filter: blur(50px);
  opacity: 0.3;
}

body::before {
  width: 200px;
  height: 200px;
  background: #d4a8f6;
  top: 10%;
  left: 5%;
}

body::after {
  width: 250px;
  height: 250px;
  background: #e6c338;
  bottom: 10%;
  right: 10%;
}

.content-wrapper {
  position: relative;
  z-index: 1;
}

.navbar {
  background-color: #4b2785;
  padding: 16px 32px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-brand {
  font-family: 'Satisfy';
  font-size: 28px;
  color: #4b2785;
  font-weight: 400;
}

.nav-brand img {
  height: 60px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: #fdf5ff;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #d4a8f6;
}

.language-switcher {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 999;
}

.language-switcher select {
  background-color: #fff;
  color: #4b2785;
  border: 2px solid #d4a8f6;
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

.language-switcher select:focus {
  outline: none;
  border-color: #e6c338;
}

.satisfy {
  font-family: 'Satisfy', cursive;
}

.main-header {
  background-color: #4b2785;
  padding: 48px 16px 16px;
  text-align: center;
  color: #fdf5ff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  width: 100%;
}


.hero-section {
  padding: 40px 40px 50px 40px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.hero-content-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero-image-centered {
  margin-bottom: 30px;
  max-width: 400px;
}

.faq {
  padding: 32px;
}

.faq-content {
  display: flex;
  justify-content: center;
}

.accordion {
  width: 100%;
  max-width: 800px;
}

.accordion-item {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  background-color: #fff;
}

.accordion-header {
  background-color: #4b2785;
  color: #fff;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
}

.accordion-icon {
  font-size: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.accordion-icon::before {
  content: '\f078'; /* chevron-down */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
}

.accordion-body {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: #fff;
}

.accordion-body p {
  padding: 20px;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: #404040;
}

.accordion-item.active .accordion-body {
  max-height: 200px;
}

.accordion-item.active .accordion-icon::before {
  content: '\f077'; /* chevron-up */
}

footer {
  background-color: #4b2785;
  color: #fdf5ff;
  margin-top: 64px;
  padding: 32px;
  text-align: center;
  font-size: 14px;
}

.brand-title {
  font-family: 'Satisfy';
  font-size: 70px;
  color: #404040;
  margin-bottom: 25px;
  font-weight: 400;
}

.main-title{
  font-size: 42px;
}

.description {
  font-size: 20px;
  line-height: 1.6;
}


.cta-buttons {
  gap: 20px;
  margin-bottom: 40px;
}

.cta-buttons p {
  font-size: 16px;
  margin-top: 12px;
}

.btn-primary {
  background-color: #e6c338;
  color: #404040;
  padding: 20px 36px;
  border: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  background-color: #d4b12f;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #404040;
  padding: 18px 32px;
  border: 2px solid #e6c338;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-secondary:hover {
  background-color: #e6c338;
  color: #404040;
}

.hero-image img {
  border-radius: 20px;
}

.how-it-works-section {
  padding: 32px;
}

.section-title {
  text-align: center;
  font-size: 40px;
  color: #4b2785;
  margin-bottom: 48px;
}

.how-it-works-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.how-it-works-left {
  flex: 1;
  max-width: 450px;
  position: sticky;
  top: 190px;
}



.how-it-works-image {
  padding-top: 24px;
  text-align: center;
}

.how-it-works-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex: 1;
  /* max-height: 500px; */
  /* overflow-y: auto; */
  padding-right: 15px;
  padding-top: 24px;
}

.steps-container::-webkit-scrollbar {
  width: 8px;
}

.steps-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.steps-container::-webkit-scrollbar-thumb {
  background: #4b2785;
  border-radius: 10px;
}

.steps-container::-webkit-scrollbar-thumb:hover {
  background: #3a1e68;
}

.step {
  display: flex;
  flex-direction: column;
  background-color: #f8f0ff;
  border-radius: 15px;
  padding: 24px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 24px;
  background-color: #4b2785;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

.step h3 {
  color: #4b2785;
  font-size: 22px;
  margin-top: 10px;
  margin-bottom: 12px;
}

.step p {
  color: #404040;
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.services-section {
  padding: 32px;
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-title {
  text-align: center;
  font-size: 40px;
  color: #4b2785;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: #fffdfa;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background-color: #fffdfa;
}

.service-card h3 {
  padding: 16px 24px 8px;
  color: #4b2785;
  font-size: 21px;
  margin: 0;
}

.service-card p {
  padding: 0 24px 24px;
  color: #666;
  margin: 0;
}

.contact-section {
  padding: 32px;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-title {
  text-align: center;
  font-size: 40px;
  color: #4b2785;
  margin-bottom: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #4b2785;
}

.form-group input,
.form-group textarea {
  padding: 12px;
  border: 2px solid #d4a8f6;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Muli', sans-serif;
  background-color: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4b2785;
}

@media (max-width: 768px) {
  body::after {
    width: 150px;
    height: 150px;
    bottom: 5%;
    right: 5%;
    opacity: 0.2;
  }
  
  .navbar {
    padding: 12px 16px;
  }
  
  .nav-brand img {
    height: 40px;
  }
  
  .nav-links {
    gap: 16px;
  }
  
  .nav-links a {
    font-size: 14px;
  }
  
  .container {
    flex-direction: column;
    gap: 30px;
    padding: 0 16px;
  }
  
  .hero-section {
    padding: 20px 16px;
    text-align: center;
  }
  
  .hero-image-centered {
    max-width: 280px;
    margin-bottom: 20px;
  }
  
  .brand-title {
    padding-top: 40px;
    font-size: 50px;
  }
  
  .main-title {
    font-size: 28px;
  }
  
  .description {
    font-size: 16px;
  }
  
  .btn-primary {
    padding: 16px 24px;
    font-size: 16px;
  }
  
  .hero-image img {
    width: 100%;
    max-width: 300px;
  }
  
  .services-section, .faq, .contact-section, .how-it-works-section {
    padding: 20px;
  }
  
  .how-it-works-section {
    padding: 40px 16px;
  }
  
  .section-title {
    font-size: 28px;
    margin-bottom: 32px;
  }
  

  
  .how-it-works-content {
    flex-direction: column;
  }
  
  .how-it-works-left {
    align-self: center;
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .how-it-works-image img {
    align-items: center;
    max-width: 300px;
  }
  
  .steps-container {
    gap: 24px;
  }
  
  .step {
    padding: 20px;
  }
  
  .step h3 {
    font-size: 18px;
  }
  
  .step p {
    font-size: 14px;
  }
  
  .contact-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  .services-title {
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  .accordion-header {
    flex-wrap: nowrap;
  }
  
  .accordion-header h3 {
    font-size: 16px;
    flex: 1;
    padding-right: 10px;
  }
  
  .accordion-body p {
    font-size: 14px;
    padding: 16px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .service-card h3 {
    font-size: 18px;
  }
  
  .service-card p {
    font-size: 14px;
  }
  
  .nav-container {
    justify-content: space-between;
  }
  
  .nav-links {
    gap: 12px;
  }
  
  .faq-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .faq-image {
    text-align: center;
  }
  
  .faq-image img {
    width: 200px;
  }

  .language-switcher {
    top: 70px;
    right: 10px;
  }

  .btn-primary{
    padding: 12px 20px;
    font-size: 14px;  
  }
  
  .privacy-policy-section {
    padding: 80px 16px 20px;
  }
  
  .privacy-container {
    padding: 20px;
  }
  
  .privacy-container h1 {
    font-size: 28px;
  }
  
  .policy-content h2 {
    font-size: 20px;
  }
}

/* Section styling */
.section {
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  margin: 20px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  backdrop-filter: blur(5px);
}

/* Privacy Policy Styling */
.privacy-policy-section {
  padding: 120px 32px 32px;
  min-height: 100vh;
}

.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.privacy-container h1 {
  color: #4b2785;
  font-size: 36px;
  margin-bottom: 10px;
  text-align: center;
}

.last-updated {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
  font-style: italic;
}

.policy-content h2 {
  color: #4b2785;
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.policy-content h3 {
  color: #4b2785;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.policy-content p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #404040;
}

.policy-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}

.policy-content li {
  margin-bottom: 8px;
  color: #404040;
  line-height: 1.5;
}

footer a {
  color: #d4a8f6;
  text-decoration: none;
  margin-left: 10px;
}

footer a:hover {
  text-decoration: underline;
}
