* {
  box-sizing: border-box;
 padding: 0;
  margin  :    0;
}



html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   line-height: 1.6;
         color: #2c3e50;
  background-color: #ffffff;
}

.navbar {
    background-color   :    #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top    :       0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
		max-width: 1200px;
   margin: 0 auto;
  display: flex;
    justify-content: space-between;
  align-items: center;
        padding: 12px 20px;
}

.nav-brand {
  flex-shrink: 0;
}


.nav-logo {
  height: 64px;
  width: auto;
   display: block;
}

.nav-menu {
  display: flex; 
    list-style: none; 
               gap: 30px;
}

.nav-item {
   margin: 0;
}

.nav-link {
       text-decoration: none;
    color: #2c3e50;
    font-weight  :  500;
    font-size: 16px;
   transition: color 0.3s ease;
   position: relative;}

.nav-link:hover {
        color: #8e44ad;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom  :    -5px;
               left: 0;
					width  :       0;
  height: 2px;
   background-color: #8e44ad;
    transition   :        width 0.3s ease;
}

.nav-link:hover::after {
		width: 100%;}

.burger-menu {


   display: none;

	 background: none;

  border: none;

	 cursor: pointer;

	 padding: 8px;
	}

.burger-icon {
  width: 24px;
   height: 24px;
	display: block;
}@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        border-bottom: 1px solid #ecf0f1;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-item {
        padding: 10px 0;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }
}.hero

{


  display  : flex;
   align-items: center;
    justify-content: space-between;
   gap: 40px;
          max-width: 1200px;
  margin: 0 auto;
  padding  :80px 20px;


}

.hero-content {
  flex: 1;
} 

.hero h1 {
    font-size: 52px;
    font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
   color: #1a252f;
}

.hero-subtitle {
  font-size: 18px;
    color: #546e7a;
  margin-bottom: 30px;
    line-height: 1.7;
}

.cta-button {
   display: inline-block;
  background: linear-gradient(135deg, #8e44ad 0%, #c2185b 100%);
  color: #ffffff;
    padding  :  16px 40px;
	 border-radius: 8px;
         text-decoration: none;
  font-weight: 600;
                    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px); 
	  box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
} 

.hero-image {
  flex: 1;
}

.hero-image img {
	 width:      100%;
    height :       auto;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}.about-section {
  background-color: #f8f9fa;
   padding: 80px 20px;
	
}

.section-header


{
	max-width: 1200px;
   margin: 0 auto 60px;
  text-align: center;
}

.section-header h2 {
	font-size: 42px; 
	 font-weight :       700; 
   margin-bottom: 15px; 
    color     :    #1a252f;
}

.section-header p {
     font-size: 18px;
   color: #546e7a;
	 max-width: 600px;
  margin: 0 auto;
}  

.about-grid {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	   gap: 30px;

	        max-width: 1200px;

	    margin:     0 auto;

}

.about-card {
  background: #ffffff;
   padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.card-number {
    font-size:      48px; 
	font-weight: 700; 
  color: #8e44ad; 
  margin-bottom    :15px; 
    opacity   :      0.3;
}

.about-card h3 {
  font-size: 22px;
    font-weight: 600;
         margin-bottom: 15px;
   color: #1a252f;
}

.about-card p {
   color   :    #546e7a;
	 line-height:        1.7;
}@media (max-width: 768px) {
    .about-section {
        padding: 50px 20px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}.services-showcase {
  padding  :      80px 20px;

   max-width: 1200px;

   margin: 0 auto;
}

.showcase-content {
  display: flex;
    align-items: center;
    gap: 50px;
}

.showcase-text {
	flex: 1;


}

.showcase-text h2{
        font-size:    42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a252f; 
	
}

.showcase-text > p {
    font-size: 16px;
  color: #546e7a;
    margin-bottom: 25px;
   line-height: 1.7;


}

.services-list {
  list-style: none; 
	    margin-bottom: 30px;
}

.services-list li {
    font-size: 16px;
                    padding:       12px 0;
	color: #2c3e50;
  padding-left: 25px;
    position     :relative;
}

.services-list li::before {
  content: '✓';
    position: absolute;
               left: 0;
    color: #8e44ad;
    font-weight   :      bold;
               font-size: 18px;
}

.secondary-button {

	          display: inline-block;
 background-color: #ffffff;
    color: #8e44ad;
   padding: 14px 35px;
   border    :       2px solid #8e44ad;
	border-radius:     8px;
   text-decoration: none;
  font-weight     :  600;
	transition: all 0.3s ease;
}

.secondary-button:hover {

   background-color: #8e44ad;
  color: #ffffff;


}

.showcase-image {
    flex  :        1;
}

.showcase-image img {
   width: 100%;
   height: auto;
        border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .services-showcase {
        padding: 50px 20px;
    }

    .showcase-content {
        flex-direction: column;
        gap: 30px;
    }

    .showcase-text h2 {
        font-size: 32px;
    }
}.coaching-programs {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8d5f2 100%);
  padding: 80px 20px;
}

.coaching-programs h2 {
   font-size: 42px;
  font-weight: 700;
   text-align: center;
	margin-bottom: 60px;
    color: #1a252f;
    max-width: 1200px;
    margin-left: auto;
    margin-right   :    auto;
}

.programs-grid

{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
	 max-width: 1200px;
        margin: 0 auto;
}

.program-card
	{
  background: #ffffff;
  border-radius:       12px;
  overflow :        hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	 display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-10px);

	  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
	
}  

.program-card img {
       width: 100%;
  height: 250px;
   object-fit: cover;
}

.program-card h3 {
    font-size: 22px;
   font-weight: 700;
  padding: 25px 25px 10px;
   color     :  #1a252f;
}

.program-card p {
   padding: 0 25px;
  color: #546e7a;
  font-size: 15px;
   line-height: 1.6;
   flex-grow   :    1;
	
}

.program-tag {
    display: inline-block;
		 background-color: #8e44ad;
  color: #ffffff;
   padding: 8px 16px;
    border-radius    :   20px;
               font-size: 13px;
	font-weight: 600;
	 margin: 15px 25px 25px;
}@media (max-width: 768px) {
    .coaching-programs {
        padding: 50px 20px;
    }

    .coaching-programs h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
}.testimonials-section {
   padding: 80px 20px;
    max-width: 1200px;
	margin: 0 auto;
}

.testimonials-section h2 {
   font-size: 42px;
	  font-weight :      700;
	   text-align: center;
	  margin-bottom: 60px;
		color: #1a252f;
}

.testimonials-container {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap  :30px;}

.testimonial-card  
  {
	  background: linear-gradient(135deg, #f9f5ff 0%, #fdf0ff 100%);

	   padding: 35px;

	   border-radius: 12px;

		border-left: 4px solid #8e44ad;


}

.testimonial-text {
   margin-bottom: 25px;
     font-style: italic;
   line-height: 1.8;
   font-size: 16px;
  color: #2c3e50;
}

.testimonial-author h4  {
    font-size: 18px;
  font-weight: 700;
    color: #1a252f;
    margin-bottom: 5px;
}

.author-role {
	 font-size: 14px;
  color: #8e44ad;
   font-weight: 500;
}@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 20px;
    }

    .testimonials-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
}.cta-section

{
     background: linear-gradient(135deg, #8e44ad 0%, #c2185b 100%);
  padding: 80px 20px;
   text-align: center;
     }

.cta-wrapper     {
	         max-width: 700px;
   margin  :0 auto; 
	

}

.cta-section h2 {
    color: #ffffff;
  margin-bottom: 20px;
	font-size  :  42px;
   font-weight: 700;
     }

.cta-section p {
    font-size: 18px;
  color: #ffffff;
         margin-bottom: 35px;
    line-height: 1.7;
   opacity: 0.95;
}

.primary-cta-button {
    display: inline-block;
	 background-color: #ffffff;
  color: #8e44ad;
  padding: 16px 45px;
   border-radius: 8px;
   text-decoration: none;
    font-weight: 700;
                    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.primary-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
}@media (max-width: 768px) {
    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
    }
}.contact-section 
 {
  padding: 80px 20px;
   background-color: #f8f9fa; 
	
}

.contact-section h2 {

  font-size: 42px; 
	  font-weight: 700; 
	   text-align :      center; 
	    margin-bottom: 50px; 
	   color: #1a252f; 
	
	}

.contact-form {
    max-width: 600px;
          margin    :       0 auto;
   background    :        #ffffff;
  padding: 50px;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
	 margin-bottom: 25px;
}

.contact-form label {
    margin-bottom: 8px;
    color: #1a252f;
      display: block;
   font-weight :  600;
   font-size: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {

	   padding: 14px 16px;
          font-size: 15px;
	border: 1px solid #d0d0d0;
   border-radius: 8px;
  font-family :    inherit;
  width: 100%;
   color: #2c3e50;
   transition: border-color 0.3s ease, box-shadow 0.3s ease;


}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus  {
    outline: none;
	 border-color: #8e44ad;
  box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1);
}

.contact-form textarea {
    resize: vertical;
         min-height: 130px;
}



.submit-button {
  width: 100%;
  background: linear-gradient(135deg, #8e44ad 0%, #c2185b 100%);
  color: #ffffff;
  padding: 16px;
	 border: none;
  border-radius: 8px;
   font-weight : 700;
  font-size: 16px;
    cursor:pointer;
         transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
}

.submit-button:active


{
  transform: translateY(0);
}@media (max-width: 768px) {
    .contact-section {
        padding: 50px 20px;
    }

    .contact-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}.footer {
    background-color: #1a252f;
    color: #ffffff;
  padding: 60px 20px 20px;
}

.footer-container {
   grid-template-columns: auto 1fr;
  margin    :  0 auto 40px;
  align-items: start;
    display: grid;
    gap: 60px;
   max-width: 1200px;
}

.footer-logo-section

{
   flex-shrink: 0;


}

.footer-logo {
   height: 86px;
  width  :auto;
    display:block;
  filter: brightness(0) invert(1);
}

.footer-content {
    display     : grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 40px;
}

.footer-column h4		{
   	font-size: 16px; 
  font-weight: 700; 
    margin-bottom: 18px; 
  color: #ffffff;
}

.footer-column ul     {
   list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  color :  #b0bec5;
	text-decoration: none;
   transition: color 0.3s ease;
   font-size: 14px;
}

.footer-column a:hover{
   color: #8e44ad;
}

.footer-address {
   color: #b0bec5;
   font-size: 14px;
  line-height: 1.8;
   margin-bottom: 15px;
}

.footer-phone {
   color: #b0bec5;
  font-size: 14px;
}

.footer-phone a {
    color: #8e44ad;
    text-decoration: none;
    font-weight: 600;
}

.footer-column p {
    color: #b0bec5;
  font-size  :       14px;
   line-height: 1.6;
	}

.footer-bottom {
  max-width: 1200px;
   margin: 0 auto;
               padding-top: 30px;
	border-top: 1px solid #37474f;
    text-align: center;
    color: #78909c;
       font-size: 14px;
}@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-logo {
        height: 64px;
    }
}.services-hero {
  background: linear-gradient(135deg, #8e44ad 0%, #c2185b 100%);
  padding: 100px 20px;
  text-align: center;
   color: #ffffff;
}

.services-hero-content h1 {
    font-size: 48px;
   font-weight: 700;
  margin-bottom :   15px;
}

.services-hero-content p {
                  font-size: 20px;
     max-width   :       600px;
    margin: 0 auto;
 opacity: 0.95;
    line-height: 1.6;


}@media (max-width: 768px) {
    .services-hero {
        padding: 60px 20px;
    }

    .services-hero-content h1 {
        font-size: 36px;
    }

    .services-hero-content p {
        font-size: 16px;
    }
}.services-container {
    max-width: 1200px;
  margin: 0 auto;
    padding: 80px 20px;


}

.service-item {
  display     :   grid;

  grid-template-columns: 1fr 1fr;

   gap: 50px;

   align-items: center;

   margin-bottom  :100px; 

}

.service-item.reverse {
  direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}


.service-image  
  {
	overflow: hidden;
    border-radius: 12px;
}

.service-image img {
		 width: 100%;
  height: auto;
	display: block;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   transition    :   transform 0.3s ease;
	}

.service-image:hover img {
  transform: scale(1.05);
}

.service-content h2 {
	 font-size :     36px;
    font-weight: 700;
   margin-bottom: 20px;
  color: #1a252f;
}

.service-content p {
    font-size: 16px;
  color: #546e7a;
   line-height: 1.8;
    margin-bottom   :    30px;
}

.service-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap     :  20px;
    margin-bottom    :    30px;
    padding: 25px;
   background-color: #f8f9fa;
                    border-radius: 8px;
}

.detail-item {
  text-align   : center; 

}

.detail-label {
     display: block;
    font-size: 12px;
   font-weight: 700;
   color: #8e44ad;
  text-transform   :    uppercase;
        margin-bottom: 8px;
   letter-spacing: 0.5px;
}

.detail-value {
   color: #1a252f;
    font-weight :600;
    font-size  :   16px;
   display: block;
}

.service-cta {
    display: inline-block;
  background: linear-gradient(135deg, #8e44ad 0%, #c2185b 100%);
    color: #ffffff;
    padding :14px 35px;
  border-radius: 8px;
   text-decoration: none;
	font-weight: 600;
  transition  :  transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
}@media (max-width: 768px) {
    .services-container {
        padding: 50px 20px;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-item.reverse {
        direction: ltr;
    }

    .service-content h2 {
        font-size: 28px;
    }

    .service-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}.comparison-section {
   background-color :      #f8f9fa;
   padding: 80px 20px;
}

.comparison-section h2 {
  font-size    :   42px;
	 font-weight: 700;
    text-align: center;
	margin-bottom: 50px;
		color: #1a252f;
}

.comparison-table {
    max-width: 1000px; 
	    margin : 0 auto; 
	    overflow-x    :auto;
}

.comparison-table table {
   width: 100%;
	border-collapse: collapse;
   background: #ffffff;
    border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {


  background: linear-gradient(135deg, #8e44ad 0%, #c2185b 100%);
     }

.comparison-table th {
	padding: 20px;
   color: #ffffff;
	font-weight:  700;
  text-align:left;
   font-size :  14px;
    text-transform: uppercase;
   letter-spacing: 0.5px;
}



.comparison-table td {

  padding: 18px 20px;
   border-bottom: 1px solid #ecf0f1;
  color: #546e7a;
    font-size: 15px;


}

.comparison-table tbody tr:last-child td {
   border-bottom: none;
}

.comparison-table tbody tr:hover {
	background-color: #f0f4f8;
}@media (max-width: 768px) {
    .comparison-section {
        padding: 50px 20px;
    }

    .comparison-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 12px;
    }
}.faq-section     {
   padding: 80px 20px; 
	  max-width  : 900px; 
	   margin: 0 auto;
}

.faq-section h2 {
   font-size: 42px;
    font-weight: 700;
  text-align: center;
    margin-bottom: 50px;
    color: #1a252f;
}

.faq-container {
   display :flex;
	  flex-direction: column;
	  gap: 20px;
}

.faq-item {
   background: #ffffff;
    border: 1px solid #ecf0f1;
    border-radius: 8px;
   overflow  :        hidden;
     transition    :      box-shadow 0.3s ease;
}


.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
  width: 100%;
	 padding: 24px;
    background: #ffffff;
    border: none;
 cursor: pointer;
  display: flex;
  justify-content: space-between;
   align-items: center;
  font-size: 18px;
   font-weight :  600;
    color   :     #1a252f;
  transition    : background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-icon {
  width: 20px;
  height: 20px;
    transition: transform 0.3s ease;
                    flex-shrink: 0;
  margin-left     :   15px;

}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
       padding: 0 24px 24px;
    color: #546e7a;
  font-size   :      15px;
  line-height: 1.7;
    border-top: 1px solid #ecf0f1;
	max-height: 0;
   overflow: hidden;
				 transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer{

  max-height: 500px;
  padding: 24px 24px 24px;


}@media (max-width: 768px) {
    .faq-section {
        padding: 50px 20px;
    }

    .faq-section h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 18px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .faq-item.active .faq-answer {
        padding: 18px 18px 18px;
    }
}.why-choose-section   {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8d5f2 100%);
  padding: 80px 20px;
}

.why-choose-section h2 {
   font-size: 42px;
  font-weight: 700;
  text-align: center;
   margin-bottom: 60px;
   color: #1a252f;
} 

.why-choose-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
   max-width: 1200px;
    margin: 0 auto;
}

.why-card
	{
  background   : #ffffff;
    padding: 40px;
   border-radius   :       12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
         transition: transform 0.3s ease, box-shadow 0.3s ease;
 text-align: center;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);

}

.why-number {

  font-weight  :700;
   opacity: 0.3;
  font-size: 48px;
       margin-bottom: 15px;
  color: #8e44ad;
	}

.why-card h3 {
   font-size: 22px;
  font-weight     : 700;
  margin-bottom: 15px;
   color: #1a252f;
}

.why-card p {
       font-size: 15px;
	 color: #546e7a;
  line-height: 1.7;
}@media (max-width: 768px) {
    .why-choose-section {
        padding: 50px 20px;
    }

    .why-choose-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
}.thankyou-section		{
   padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8d5f2 100%);
  min-height: calc(100vh - 200px);
   display: flex;
    align-items :    center;
	justify-content: center;
}

.thankyou-container {
  max-width: 600px;
    background: #ffffff;
   padding     :   60px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
   text-align: center;
}

.thankyou-icon {
    margin-bottom: 30px;
}

.thankyou-icon img 
 {
	width: 80px;
   height    :        80px;
  margin: 0 auto;
   display: block;
  filter: drop-shadow(0 2px 8px rgba(142, 68, 173, 0.3));
}

.thankyou-container h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1a252f;
    margin-bottom: 20px;
}

.thankyou-main-text {
   font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
      margin-bottom: 40px;
}

.thankyou-details {
  display  :      grid;
  grid-template-columns: 1fr 1fr;
   gap: 25px;
     margin-bottom: 40px;

}

.detail-box {
   text-align   :       left;
	 background: #f8f9fa;
  border-radius: 8px;
  padding    :      25px;
}

.detail-box h3 {

  color: #1a252f;
   margin-bottom: 15px;
    font-size: 18px;
       font-weight   :   700;

}

.detail-box ul		{
         list-style: none;

}

.detail-box li {
    padding: 8px 0;
   color: #546e7a;
   font-size: 15px;
    padding-left: 25px;
   position: relative;
}

.detail-box li::before {
  content: '✓';
    position: absolute;
   left: 0;
   color: #8e44ad;
   font-weight     :  bold;
  font-size: 16px;
}

.detail-box p {
     color: #546e7a;
    font-size: 15px;
	line-height: 1.6;
   margin-bottom   : 12px;

}

.contact-info {
     font-size: 18px;
   font-weight: 700;
}

.contact-info a		{
  color: #8e44ad;
   text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover


{
 color: #c2185b;
}

.next-steps {
         margin-top: 40px;
   padding-top: 40px;
    border-top: 1px solid #ecf0f1;
}

.next-steps h3 {

	   font-size: 18px;
  font-weight: 700;
    color: #1a252f;
                    margin-bottom: 25px;


}

.steps-grid {
     display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 20px; 

}

.step-card {
  background: linear-gradient(135deg, #8e44ad 0%, #c2185b 100%);
   color: #ffffff;
	padding: 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
   display: flex;
   flex-direction: column;
    align-items: center;
	gap: 12px;

}

.step-card:hover {
  transform: translateY(-4px);

	  box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
}

.step-number {
   font-size: 32px;
    font-weight: 700;
  opacity     :    0.8;
}

.step-card p {
         line-height: 1.5;
  font-size: 14px;
  text-align: center;
}

.testimonials-thankyou {
    padding: 80px 20px;
    max-width: 1200px;
    margin  :       0 auto;
}

.testimonials-thankyou h2 {
   font-size    :     42px;
  font-weight: 700;
   text-align: center;
	margin-bottom: 60px;
  color:   #1a252f;
}@media (max-width: 768px) {
    .thankyou-section {
        padding: 50px 20px;
        min-height: auto;
    }

    .thankyou-container {
        padding: 40px 25px;
    }

    .thankyou-container h1 {
        font-size: 32px;
    }

    .thankyou-details {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-thankyou {
        padding: 50px 20px;
    }

    .testimonials-thankyou h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
}.policy-section {
     padding: 80px 2rem;
   background     :      #f8f9fa;
  min-height: calc(100vh - 300px);
}

.policy-container {
       max-width: 800px;
  margin     :   0 auto;
    text-align   :       left;


}

.policy-container h1
{
    font-size: 3rem;
  color: #1a252f;
     margin-bottom  :     40px;
    font-weight: 700;
}

.policy-container h2  {
    font-size: 2.5rem;
    color: #1a252f;
  margin-bottom     :      1.5rem;
	margin-top: 40px;
    font-weight: 700;
    text-transform: none;
}

.policy-container h3 {
			font-size: 1.5rem;
  color: #2c3e50;
   margin-bottom: 1rem;
    margin-top: 25px;
     font-weight: 600;
}

.policy-container p {
   color: #546e7a;
    margin-bottom: 1.5rem;
   line-height: 1.8;
   font-size: 1rem;
}

.policy-container li {
    color: #546e7a;
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 1rem;}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policy-container h2 {
        font-size: 1.8rem;
        margin-top: 30px;
        margin-bottom: 1rem;
    }

    .policy-container h3 {
        font-size: 1.3rem;
        margin-top: 20px;
        margin-bottom: 0.75rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
}