* {
   margin: 0;
  padding  :   0;
	 box-sizing: border-box;
}


html {
   scroll-behavior: smooth;
     }

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
	 color: #2c3e50;
   background-color: #f8f9fa;
}

.navbar {
  background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 2rem; 
    display: flex; 
    justify-content: space-between; 
    align-items     :      center;
}

.nav-logo	{
   flex-shrink: 0;
}

.logo-img {
    height: 74px;
       width: auto;
     display: block;
}

.nav-menu {
   display: flex;
	 list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
  font-weight: 500;
   text-decoration: none;
   padding-bottom: 0.5rem;
  transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent;
  font-size: 1rem;
    color: #2c3e50;
}

.nav-link:hover {

  color: #9b59b6;
  border-bottom-color: #9b59b6;}

.hamburger   {
    display     :  none;
  flex-direction: column;
   cursor: pointer;
    gap: 6px;
	
}

.hamburger span {
   width: 25px;
   height: 3px;
   background-color: #2c3e50;
   border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2)     {
    opacity: 0;
}

.hamburger.active span:nth-child(3)


{
  transform: rotate(-45deg) translate(7px, -7px);
}@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-container {
        padding: 0 1rem;
    }
}.hero {
  max-width: 1200px;
    margin: 0 auto;
  padding: 4rem 2rem;
   display     : grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items   :   center;
}

.hero-content h1 {
  font-size: 3rem;
   color: #1a1a1a;
   margin-bottom: 1.5rem;
      line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  color: #555;
    margin-bottom: 2rem;
   line-height: 1.8;
}

.cta-button {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
  text-decoration: none;
  border-radius:       50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
}

.hero-image {
  display: flex;
    justify-content: center;
}

.hero-img {

  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.about-section {
  padding: 4rem 2rem;
	max-width: 1200px;
    margin: 2rem auto;
}

.about-wrapper {
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
   font-size: 2.5rem;
   color: #1a1a1a;
   margin-bottom: 1.5rem;
} 

.about-text p {
    color: #555;
      margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}

.about-img {
   max-width    :      100%;
        height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }
}.services-preview {
    -moz-border-radius: 20px;
  max-width: 1200px;
    margin: 0 auto;
   -webkit-border-radius: 20px;
    padding: 4rem 2rem;
    background: #f0e8f8;
   border-radius: 20px;
}

.services-preview h2 {
    font-size: 2.5rem;
  color: #1a1a1a;
  text-align: center;
  margin-bottom  : 3rem;


}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; 

}

.service-card    {

 background: white;
   padding: 2rem;
    border-radius   :      12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;

	}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(155, 89, 182, 0.2);
}

.service-card h3 {
   color: #9b59b6;
  margin-bottom : 1rem;
   font-size: 1.3rem;
}

.service-card p {

  color: #666;
	  line-height: 1.7;}

.benefits-section {
    max-width: 1200px;
   margin: 2rem auto;
   padding: 4rem 2rem;
}

.benefits-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
	
}


.benefits-text h2 {
  font-size: 2.5rem;
    color: #1a1a1a;
   margin-bottom: 1.5rem;

}

.benefits-text p {
   color: #555;
  margin-bottom: 1.5rem;
    font-size    :    1rem;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  padding: 0.8rem 0;
   color: #2c3e50;
  padding-left: 2rem;
   position: relative;
   font-size: 1rem;
} 

.benefits-list li:before {
  content: "✓";
  position   : absolute;
   left:       0;
  color     :      #9b59b6;
  font-weight: bold;
  font-size: 1.2rem;
}

.benefits-img {
	max-width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);

}
@media (max-width: 768px) {
    .benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-text h2 {
        font-size: 2rem;
    }
}.testimonials {
    max-width  :1200px;
      margin: 2rem auto;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5e6ff 0%, #ffe6f0 100%);
   border-radius: 20px;
}

.testimonials h2 {
   font-size: 2.5rem;
   color: #1a1a1a;
    text-align: center;
  margin-bottom: 3rem;


}


.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background     :     white; 
	  padding    : 2rem; 
	   border-radius    :     12px; 
	  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-card p   {
    color: #555;
   line-height: 1.8;
	 margin-bottom: 1rem;
    font-size: 0.95rem;
}

.testimonial-author 
 {
  color: #9b59b6;
  font-weight: 600;
  font-size: 0.9rem;
}

.programs-section {
    max-width   :  1200px;
  margin: 2rem auto;
  padding: 4rem 2rem;
}

.programs-section h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  text-align: center;
   margin-bottom: 3rem;
}

.programs-wrapper {
  display: flex;
   flex-direction: column;
  gap: 3rem;
}



.program-item {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
}

.program-item:nth-child(even) {
   grid-template-columns: 1fr 1fr;
   direction: rtl;
}

.program-item:nth-child(even) > * {
   direction: ltr;

}

.program-img {


    max-width: 100%;
        height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-content h3 {
   font-size: 1.8rem;
   color     :  #1a1a1a;
          margin-bottom: 1rem;
}

.program-content p {
   color: #555;
  line-height     :    1.8;
 font-size: 1rem;
}@media (max-width: 768px) {
    .program-item {
        grid-template-columns: 1fr;
    }

    .program-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
}.cta-section {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
   color: white;
  max-width:      1200px;
	 margin: 2rem auto;
               padding: 4rem 2rem;
    border-radius :  20px;
   text-align: center;
}

.cta-content h2 {
         font-size: 2.5rem;
    margin-bottom : 1rem;
} 

.cta-content p {
   font-size: 1.1rem;
                    margin-bottom: 2rem;
   opacity: 0.95;


}

.cta-button-large {
   display: inline-block;
  padding: 1rem 3rem;
  background: white;
   color: #9b59b6;
    text-decoration: none;
    border-radius: 50px;
   font-weight    :700;
    transition  :       all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {

	  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);}

.contact-section {
  max-width: 1200px;
      margin: 2rem auto;
      padding: 4rem 2rem;
}

.contact-container h2 {
   font-size: 2.5rem;
  color: #1a1a1a;
    text-align     :center;
         margin-bottom   :    3rem;
}

.contact-wrapper {
    display:      grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form-container h3 {
    font-size: 1.5rem;
   color: #1a1a1a;
               margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea     {
   padding: 1rem;
    border: 2px solid #ddd;
  border-radius: 8px;
   font-family: inherit;
    font-size: 1rem;
  transition: border-color 0.3s ease;


}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
    border-color    :   #9b59b6;
  box-shadow: 0 0 0 3px rgba(155, 89, 182, 0.1);
}

.submit-button {
   padding: 1rem 2rem;
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
       color : white;
  border: none;
	border-radius: 8px;
  font-weight: 600;
   cursor: pointer;
  transition: all 0.3s ease;
   font-size: 1rem;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
}

.contact-info h3 {
    font-size: 1.5rem;
   color: #1a1a1a;
   margin-bottom: 2rem;
}

.info-block {
      margin-bottom: 2rem;
}



.info-block h4 {
  color: #9b59b6; 
	  font-size: 1.1rem; 
	   margin-bottom: 0.5rem;
}  

.info-block p{

   color: #555;
	line-height: 1.8;


}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 2rem 1rem;
    }
}.footer {
	background: #1a1a1a;
               color: white;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
   padding: 3rem 2rem;
  display: grid;
    grid-template-columns: auto 1fr;
  gap: 3rem;
    align-items: flex-start;
}

.footer-logo-img {
    height: 96px;
    width: auto;
  filter: brightness(0) invert(1);
   display:       block;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.footer-section h4 {
   font-size: 1.1rem;
   margin-bottom: 1rem;
   color: #9b59b6;
}

.footer-section ul {
   list-style: none;
}

.footer-section li {
          margin-bottom: 0.8rem;
}

.footer-section a {
                    color: #ccc;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
   color: #9b59b6;
}  

.footer-section p {
       color   :      #ccc;
	line-height:  1.8;
    font-size: 0.95rem;}

.footer-bottom {
   text-align: center;
  padding: 2rem;
   border-top: 1px solid #333;
    color: #999;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}.services-hero {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
  padding: 5rem 2rem;
  text-align: center;
    max-width: 100%;
}

.services-hero-content h1 {
    font-size: 3rem;
  margin-bottom  : 1rem;
  line-height: 1.2;}

.services-hero-content p {
      font-size: 1.2rem;
       opacity: 0.95;
	 max-width: 700px;
   margin: 0 auto;
}@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 1rem;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }
}.services-detailed {
          max-width: 1200px;
  margin     :0 auto;
  padding: 4rem 2rem;
}

.service-detail-item {
    display: grid;
	 grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
    margin-bottom:   5rem;


}

.service-detail-item.reversed     {
    direction : rtl;
} 

.service-detail-item.reversed > * {
    direction: ltr;
}

.service-detail-image {
	display: flex;
   justify-content: center;
}

.detail-img {
    max-width: 100%;
   height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-detail-content h2 {
   font-size: 2.2rem;
   color  :#1a1a1a;
  margin-bottom: 1.5rem;
}

.service-detail-content p {
  color     :      #555;
        line-height: 1.8;
    margin-bottom: 1.5rem;
   font-size: 1rem;
	
}

.service-detail-content h3 {
  font-size: 1.3rem;
  color: #9b59b6;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem; 
	
}

.service-list li {
      padding: 0.8rem 0;
  padding-left: 2.5rem;
    position: relative;
  color: #555;
  line-height: 1.7;
}

.service-list li:before {
  content: "→";
  position: absolute;
	left:        0;
   color: #9b59b6;
  font-weight: bold;
	font-size: 1.2rem;
}

.service-details-box {
   background: #f5e6ff;
    padding: 1.5rem;
  border-radius: 10px;
	border-left   :       4px solid #9b59b6;
}

.service-details-box p {
    margin: 0.8rem 0;
  color: #2c3e50;
  font-size: 0.95rem;
	}@media (max-width: 768px) {
    .service-detail-item {
        grid-template-columns: 1fr;
        margin-bottom: 3rem;
    }

    .service-detail-item.reversed {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .services-detailed {
        padding: 2rem 1rem;
    }
}.service-comparison {
   max-width: 1200px;
    border-radius: 20px;
    padding: 4rem 2rem;
    background: #f0e8f8;
    margin: 2rem auto;
}

.service-comparison h2 {
   font-size: 2.5rem;
  color: #1a1a1a;
	 text-align: center;
  margin-bottom: 3rem;
}

.comparison-table {
     overflow-x: auto;
}

table {
   width: 100%;
 border-collapse: collapse;
    background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

thead {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);

	   color: white;
}

th	{
  padding: 1.2rem;
   text-align:        left;
   font-weight: 600;}

td {
	padding: 1rem 1.2rem;
	 border-bottom: 1px solid #f0f0f0;
   color: #555;
}

tbody tr:hover {
   background: #f9f9f9;
}@media (max-width: 768px) {
    .service-comparison {
        padding: 2rem 1rem;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.8rem 0.6rem;
    }
}.faq-section {
   max-width: 1200px;
 margin: 2rem auto;
   padding: 4rem 2rem;
}

.faq-section h2
	{
  font-size: 2.5rem;
  color     : #1a1a1a;
   text-align: center;
  margin-bottom: 3rem;
}

.faq-container {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
     background: white;
	padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease; 
	
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(155, 89, 182, 0.2);
}

.faq-item h3 {
    color: #9b59b6;
   font-size: 1.1rem;
  margin-bottom: 1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.7;
	 font-size: 0.95rem;
}@media (max-width: 768px) {
    .faq-section {
        padding: 2rem 1rem;
    }

    .faq-section h2 {
        font-size: 2rem;
    }
}.pricing-section  
  {
   max-width: 1200px;
   margin: 2rem auto;
	 padding: 4rem 2rem;
   text-align: center;
}

.pricing-section h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
}

.pricing-intro {
   margin-right: auto;
  margin-bottom: 3rem;
    color: #555;
   margin-left   :    auto;
   font-size: 1.1rem;
   max-width: 600px;
	
}

.pricing-cards {
   display :grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; 

}

.pricing-card {
  background: white;
    padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid #f0f0f0;
          position: relative;
}

.pricing-card:hover {
     transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(155, 89, 182, 0.2);

}

.pricing-card.featured {

    border-color: #9b59b6;
  background: linear-gradient(135deg, #f5e6ff 0%, #ffe6f0 100%);
  transform: scale(1.05);}

.featured-badge {
    position: absolute;
  top: -15px;
    left: 50%;
  transform: translateX(-50%);
   background: #9b59b6;
    color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
   font-size: 0.85rem;
               font-weight: 600;
	
}

.pricing-card h3 {
   margin-bottom :        1rem; 
    font-size: 1.5rem; 
    color     :        #1a1a1a;
	
}

.price {
   font-size: 2rem;
   color: #9b59b6;
  font-weight: 700;
    margin-bottom: 0.5rem;
}

.price span {
    font-size: 1rem;
  color: #999;
   font-weight: 400;
}

.price-note {
  color: #999;
       margin-bottom: 1.5rem;
      font-size: 0.9rem;
}

.pricing-features {
   list-style: none;
  text-align: left;
   margin: 1.5rem 0; 
	
}

.pricing-features li {
   padding: 0.8rem 0;
    color: #555;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
}

.pricing-features li:last-child {
   border-bottom: none;
}@media (max-width: 768px) {
    .pricing-section {
        padding: 2rem 1rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}.thankyou-section {
          max-width: 800px;
 margin: 4rem auto;
        padding: 4rem 2rem;
   text-align: center;
}

.success-icon {
          margin-bottom: 2rem;
}

.success-icon svg {
  width: 120px;
   height    :      120px;
       animation: checkmark-scale 0.6s ease-out;
}@keyframes checkmark-scale {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
   font-size: 2.8rem;
   color  : #1a1a1a;
	 margin-bottom: 1rem;
}

.success-message {
  font-size: 1.2rem;
   color: #9b59b6;
  margin-bottom   :       3rem;
}

.confirmation-details {
	   background: #f0e8f8;
    margin-bottom: 3rem;
  padding: 2rem;
   border-radius   :       15px;
  text-align: left;

}

.confirmation-details h2

{
  font-size: 1.5rem;
  color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center; 

}

.details-box {
	display: grid;
               gap: 1.5rem;
	}

.detail-item {
        display: grid; 
	   grid-template-columns: 200px 1fr; 
	   gap:      2rem; 
	       align-items: center;
}

.detail-label {

	   font-weight: 600;
    color: #9b59b6;


}

.detail-value {
    color  :    #2c3e50;
}

.next-steps {
    background: white;
   padding: 2.5rem;
  border-radius: 15px;
   margin-bottom  :      3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    color: #1a1a1a;
   margin-bottom: 2rem;
  text-align: center;
	
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
	display: flex;
    gap: 1.5rem;
}

.step-number {
               display: flex;
  align-items: center;
   justify-content: center;
  width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
      border-radius: 50%;
   font-weight: 700;
    font-size: 1.2rem;
  flex-shrink   :        0;
}

.step-content h3 {
    color: #1a1a1a;
    font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-content p {
   color: #666;
	font-size: 0.9rem;
  line-height: 1.6;
}

.contact-support {
  background: linear-gradient(135deg, #f5e6ff 0%, #ffe6f0 100%);
   padding: 2.5rem;
   border-radius: 15px;
  margin-bottom: 3rem;
}

.contact-support h2 {

   font-size  :1.5rem;
   color: #1a1a1a;
  margin-bottom: 1rem;
   text-align: center;}

.contact-support > p {
    color: #666;
    margin-bottom: 1.5rem;
    text-align    :     center;
}

.support-info {
    text-align: left;
}

.support-info p {
	    color: #2c3e50;
   margin: 0.8rem 0;
    font-size :       0.95rem;}

.action-buttons {
        display: flex;
 gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
   flex-wrap  :        wrap;
}

.btn-primary, .btn-secondary {
   display: inline-block;
   padding: 1rem 2.5rem;
   border-radius: 50px;
    text-decoration :      none;
   font-weight: 600;
   transition: all 0.3s ease;
          font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    color: white;
  box-shadow: 0 4px 15px rgba(155, 89, 182, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(155, 89, 182, 0.4);
}

.btn-secondary {
	background     : white;
    color: #9b59b6;
    border: 2px solid #9b59b6;
}

.btn-secondary:hover {
        background  :      #f5e6ff;
}

.recommended-section {
   max-width: 1200px;
	  margin: 2rem auto;
	  padding: 4rem 2rem;
}

.recommended-section h2 {
  color: #1a1a1a;
	   font-size: 2.5rem;
	        margin-bottom: 3rem;
	    text-align: center;
}

.recommended-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.recommended-card {
   background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.recommended-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(155, 89, 182, 0.2);
}

.recommended-card h3 {
    font-size: 1.3rem;
  color: #9b59b6;
  margin-bottom: 1rem;
	}

.recommended-card p {
  color: #666;
    line-height: 1.7;
  margin-bottom: 1.5rem;
   font-size: 0.95rem;
}

.card-link {
   display   : inline-block; 
	  color: #9b59b6; 
	       text-decoration: none; 
	    font-weight:        600; 
	   padding: 0.5rem 1rem; 
	  border: 2px solid #9b59b6; 
	    border-radius: 20px; 
	   transition: all 0.3s ease;
}

.card-link:hover {
  background: #9b59b6;
  color   :      white;
}@media (max-width: 768px) {
    .thankyou-section {
        padding: 2rem 1rem;
        margin: 2rem auto;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .detail-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .recommended-section {
        padding: 2rem 1rem;
    }
}.policySection {
    padding     :        80px 2rem;
   background: #f8f9fa;
}

.policyContainer {
  max-width: 900px;
   margin: 0 auto;
  text-align: left;
}

.policyContainer h1 {
   font-size    :      3rem;
   color: #1a1a1a;
  margin-bottom: 2rem;
    font-weight: 700;
    line-height:       1.2;
}

.policyContainer h2 {
    font-size: 2rem; 
	    color: #9b59b6; 
	  margin-top: 2.5rem; 
	    margin-bottom: 1.5rem; 
	  font-weight: 600;
}

.policyContainer p {


    color: #555;
       margin-bottom: 1.5rem;
   line-height: 1.8;
  font-size: 1rem;
}

.policyContainer p + h2 {
    margin-top: 3rem;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}