* {
    margin  :     0;
   padding: 0;
   box-sizing: border-box;
}

body   {

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
   background: #ffffff;
	}

.topbar
{
    background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	position: sticky;
    top: 0;
  z-index: 1000;
   padding: 1rem 0;
}

.nav-wrapper {
  max-width: 1200px;
     margin: 0 auto;
    padding: 0 20px;
   display    :  flex;
    justify-content: space-between;
    align-items: center;
}

.brand-section {
   flex: 0 0 auto;
} 

.brand-image {
  height: 45px;
	width: auto;
}


.menu-toggle {

	          display: none;
  background: none;
   border: none;
  cursor: pointer;
   flex-direction: column;
  gap :5px;
   padding: 8px;
}

.burger-line {
  width: 28px;
   height     : 3px;
   background: #2c3e50;
   transition: all 0.3s ease;
   border-radius    : 2px;
}

.nav-links {

	   display: flex;
      list-style: none;
  gap: 2.5rem;
         margin: 0;
}

.nav-links a   {
	  text-decoration: none;
   color: #2c3e50;
       font-weight: 500;
   font-size: 16px;
  transition: color 0.3s;
   position: relative; 


}

.nav-links a:hover {


   color: #667eea;}

.nav-links a::after {


  content: '';
   position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
  height: 2px;
  background: #667eea;
  transition  :      width 0.3s;


}

.nav-links a:hover::after {
  width :        100%;
}

.hero-area {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
	 padding: 80px 20px;
}

.hero-content-wrap {


   max-width: 1200px;
   margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap     :        60px;
    align-items: center;
}

.text-block h1 {
   font-size     :  3rem;
   color: #1a202c;
   margin-bottom: 24px;
    line-height: 1.2;
   font-weight: 700;
}

.intro-text {
    font-size: 1.25rem;
   color: #4a5568;
  margin-bottom: 32px;
  line-height: 1.7;
}

.primary-btn {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	padding: 16px 36px;
				 border-radius: 8px;
  text-decoration:   none;
  font-weight: 600;
    font-size: 1.1rem;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hero-visual img {
  width: 100%;
    height: auto;
       border-radius  :    12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.benefits-zone {
  background: white;
     padding: 80px 20px;
}

.container-fluid
	{

        max-width: 1200px;
 margin:     0 auto;

}



.benefits-zone h2 {
  text-align: center;
         font-size: 2.5rem;
   margin-bottom: 50px;
  color: #1a202c;

}

.benefit-grid {
	 display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}


.benefit-card {

	  padding: 35px;
    background: #f8f9fa;
    border-radius: 10px;
   transition: transform 0.3s, box-shadow 0.3s;


}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.icon-holder {
   width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
   display: flex;
    align-items     :       center;
	 justify-content: center;
   margin-bottom: 20px;
}

.icon-holder svg  
  {

	   stroke: none;
  fill: white;
   width: 48px;
  height: 48px;
}

.benefit-card h3{
    font-size:        1.5rem;

  margin-bottom: 15px;

   color: #2c3e50;
}

.benefit-card p {


   color: #4a5568;
    line-height: 1.7;
     }

.about-section {
	padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}


.about-layout {
    align-items : center;
   display: grid;
   gap: 60px;
   grid-template-columns: 1fr 1fr;
}

.image-side img {
   width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.content-side h2	{
    font-size: 2.2rem;
  margin-bottom: 25px;
  color: #1a202c;
}

.content-side p {
    margin-bottom: 20px;
    color: #4a5568;
  font-size: 1.1rem;
   line-height :       1.8;
}

.services-preview {
	padding: 80px 20px;
	 background: white;
}

.services-preview h2 {
	 text-align: center;
   font-size:  2.5rem;
  margin-bottom: 50px;
  color     :   #1a202c;
}

.services-wrapper {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 40px;

}

.service-item {
    -moz-border-radius: 10px;
   background: #f8f9fa;
    -webkit-border-radius: 10px;
  border-radius: 10px;
  overflow: hidden;
     transition: transform 0.3s, box-shadow 0.3s;
}

.service-item:hover {
  transform: translateY(-5px);

  box-shadow: 0 10px 30px rgba(0,0,0,0.15); 

}

.service-item img {
    width: 100%;
	height: 250px;
  object-fit: cover;
}

.service-item h3 {
  padding  :      25px 25px 15px;
	 font-size: 1.5rem;
    color: #2c3e50;
}

.service-item p    {

  padding: 0 25px 20px;
    color: #4a5568;
  line-height: 1.7;
     }

.link-arrow  {
	   text-decoration:     none;
    display: inline-block;
    color: #667eea;
   font-weight: 600;
   transition: color 0.3s;
  padding    :   0 25px 25px;
}

.link-arrow:hover {
    color: #764ba2;
}

.cta-block		{
   padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align: center;
}

.cta-inner h2 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.cta-subtitle {
  color: rgba(255,255,255,0.9);

	   font-size: 1.3rem;

	  margin-bottom: 35px;

	   max-width: 700px;

	     margin-left: auto;

	  margin-right: auto;
}

.cta-button {
		display: inline-block;
 background: white;
   color: #667eea;
   padding: 18px 40px;
   border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
   font-size: 1.15rem;
      transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-2px);
	  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
} 

.testimonials-area		{
        padding    :  80px 20px;
   background: white;
}

.testimonials-area h2 {
  text-align: center;
    font-size:   2.5rem;
  margin-bottom   :   50px;
  color  :     #1a202c;
}

.testimonial-grid   {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap     :        40px;

}

.testimonial-box {
    background: #f8f9fa;
	 padding: 35px;
  border-radius   :     10px;
  border-left: 4px solid #667eea;
}

.testimonial-text {
	  line-height:    1.7;
     font-style: italic;
     margin-bottom  :        20px;
       font-size   :1.1rem;
      color :  #4a5568;
     }

.author-name {
    color: #2c3e50;
             font-weight: 600;
	
}

.contact-zone {
	          padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);} 

.contact-wrapper {
  display: grid;
   grid-template-columns: 1.5fr 1fr;
		 gap: 60px;
}

.form-side h2 {


   font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1a202c;

}

.form-intro  
  {
    margin-bottom     :        30px;
   color: #4a5568;
   font-size: 1.1rem;
}

.contact-form {
  background    :    white; 
	    padding: 40px; 
	               border-radius: 10px; 
	  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {

	   margin-bottom  :25px;


}

.form-group label {
    color  :     #2c3e50;
  font-weight:  500;
  display: block;
  margin-bottom: 8px; 

}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 12px 15px;
   border     : 2px solid #e2e8f0;
    border-radius     :     6px;
  font-size     : 1rem;
     font-family: inherit;
  transition: border-color 0.3s;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	  outline     :      none;
    border-color: #667eea;


}

.form-group textarea	{
        resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 14px 35px;
	 border: none;
    border-radius: 6px;
   font-size   : 1.1rem;
   font-weight: 600;
    cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover
	{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.info-side {
  background: white;
    padding: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: fit-content;
}

.info-side h3 {
    font-size: 1.8rem;
  margin-bottom: 30px;
 color   :     #1a202c;
}

.info-item {
  display: flex; 
	    gap: 20px; 
	   margin-bottom: 30px;
}

.info-icon {
   flex-shrink: 0;
   width: 50px;
	 height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
    align-items: center;
    justify-content :center; 
	
}

.info-icon svg {

	   stroke: none;
    fill: white;
   width: 24px;
  height   :        24px;
}

.info-label {
   font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.info-item p {
  color: #4a5568;
   line-height: 1.6;
}

.site-footer {
       padding: 60px 20px 30px;
  background: #1a202c;
                    color  : white;
     }

.footer-content {
	   max-width: 1200px;
   margin: 0 auto;
  display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
	gap: 40px;
   margin-bottom: 40px;
	
     }

.footer-logo {
   height: 45px;
   margin-bottom    :     15px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
     color: rgba(255,255,255,0.7);
  line-height:   1.6;
     }

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 1.2rem;

}

.footer-links {
  list-style: none;
}

.footer-links li {
    margin-bottom  :    10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7); 
          text-decoration :      none; 
    transition: color 0.3s;
}

.footer-links a:hover   {
   color: white;
}

.footer-col p {
  color: rgba(255,255,255,0.7);
   line-height: 1.7;
}

.footer-bottom  {
       max-width: 1200px;
  margin     :      0 auto;
   padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.6);
	}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 500px;
    }

    .nav-links li {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .hero-content-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .text-block h1 {
        font-size: 2rem;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .text-block h1 {
        font-size: 1.75rem;
    }

    .benefits-zone h2,
    .services-preview h2,
    .testimonials-area h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px;
    }
}.policySection {
    padding: 80px 2rem;
     background: #f8f9fa;
	
}

.policyContainer    {
  max-width: 800px;
    margin   :        0 auto;
    text-align: left;
}

.policyContainer h2 {
  font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
    font-weight: 700;
}

.policyContainer p {
  color: #7f8c8d;
  margin-bottom: 1.5rem;
	 line-height: 1.7;
  font-size: 1.1rem;


}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 20px 80px;
  text-align: center;
    position: relative;
}

.hero-overlay h1 {
   margin-bottom: 20px;
   font-weight: 700;
    color: white;
  font-size: 3rem;
}

.hero-subtitle {
  color: rgba(255,255,255,0.95);
    font-size: 1.3rem;
               max-width:      800px;
   margin     :      0 auto;
    line-height: 1.6;
}

.services-detailed {
    padding: 80px 20px;
    background: white;
}

.service-detail-item {
               display: grid;
          grid-template-columns: 1fr 1.2fr;
  gap: 60px;
       margin-bottom: 100px;
	 align-items    :start;
}

.service-detail-item.reverse {
    grid-template-columns: 1.2fr 1fr;
}

.service-detail-item.reverse .service-img-wrapper {
  order: 2; 
	
}

.service-detail-item.reverse .service-description {
   order: 1;
}

.service-img-wrapper img {

	  width: 100%;
                    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.service-description h2 {
	font-size: 2.3rem;
    color: #1a202c;
  margin-bottom: 15px;
}

.service-lead {
      font-size: 1.2rem;
   color: #667eea;
  font-weight: 600;
  margin-bottom: 20px;
	}

.service-description > p {
    color: #4a5568;
   line-height: 1.8;
       margin-bottom:30px;
  font-size: 1.05rem;
}

.features-list 
 {
   margin-bottom: 35px;
}

.feature-point

{
   display: flex;
     align-items: center;
       gap: 15px;
      margin-bottom: 18px;
}

.feature-icon {
   flex-shrink: 0;
    width     :       32px;
  height: 32px;
     background: #e8eef5;
               border-radius: 50%;
   display: flex;
		 align-items: center;
    justify-content: center;
}

.feature-icon svg {
   stroke: none;
	fill: #667eea;
    width: 20px;
    height: 20px;
}

.feature-point span {
    color: #2c3e50;
  font-size: 1.05rem;
}  

.program-details {
  display: flex;
     gap: 25px;
 margin-bottom: 35px;
   flex-wrap: wrap;


}

.detail-box    {
    min-width     :   150px;
  border-radius: 8px;
          flex: 1;
    padding: 20px 25px;
    background     :      #f8f9fa;
}

.detail-box h4 {
   font-weight: 600;
   font-size: 0.9rem;
   margin-bottom: 8px;
   color :      #667eea;
   text-transform: uppercase;
   letter-spacing :    1px;
}

.detail-box p {
   color: #2c3e50;
    font-size: 1.1rem;
 font-weight: 600;
   margin: 0;
}

.service-cta-btn    {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
	font-weight: 600;
	 transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.service-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.approach-section    {
    padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
}

.approach-section h2 {
	text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
  margin-bottom: 15px;
}

.section-intro

{
  text-align: center;
   color: #4a5568;
	 font-size: 1.2rem;
   max-width: 700px;
  margin: 0 auto 50px;
}

.approach-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap  :   35px;
}

.approach-card {
    background: white;
    padding: 35px;
       border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
   transition :    transform 0.3s;
} 

.approach-card:hover {
     transform: translateY(-5px);
	}

.approach-number {
	font-size: 2.5rem;
   opacity: 0.8;
 margin-bottom     :      15px;
   font-weight    :  700;
    color: #667eea;

}

.approach-card h3 {
  font-size: 1.4rem;

	   color: #2c3e50;

		margin-bottom: 15px;
}

.approach-card p {
  color: #4a5568;
    line-height: 1.7;
}

.investment-section {
  padding: 80px 20px;
    background: white;
}

.investment-section h2
{
   text-align: center;
                    font-size  :     2.5rem;
       color: #1a202c;
  margin-bottom: 15px;
}

.pricing-wrapper{
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
               gap: 35px;
     margin-top :       50px;
}

.pricing-card {
       background: #f8f9fa;
   padding:   40px 30px;
   border-radius     : 12px;
   text-align: center;
   position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.pricing-card.featured {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
    top: -15px;
       right:   20px;
    background: #27ae60;
    color :      white;
	 padding: 6px 18px;
  border-radius: 20px;
   font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3  
  {
  margin-bottom: 20px;
  font-size: 1.6rem;
}

.pricing-card.featured h3 {
  color :  white;
}

.price-tag {
  font-size: 2.5rem;
         font-weight: 700;
  margin-bottom     :  15px;
    color: #667eea;
}

.pricing-card.featured .price-tag	{
	 color: white;
	
}

.price-description {
    color: #4a5568;
       margin-bottom: 30px;
      line-height: 1.6; 
	
}

.pricing-card.featured .price-description {
  color: rgba(255,255,255,0.9);
}

.price-features

{
   list-style: none;
    margin-bottom :   30px;
  text-align     : left;
}

.price-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color     :#2c3e50;
}

.pricing-card.featured .price-features li {
  border-bottom-color: rgba(255,255,255,0.2);
    color: white;
	
}

.price-btn {
     display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 12px 30px;
    border-radius:      6px;
    text-decoration: none;
     font-weight: 600;
   transition: transform 0.3s;
	}

.pricing-card.featured .price-btn		{

    color: #667eea;
	 background :white;
}

.price-btn:hover 
 {
  transform: translateY(-2px);
}

.faq-section {

   padding: 80px 20px;
	  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);


}

.faq-section h2 {
   text-align    :        center;
     font-size   :       2.5rem;
     color: #1a202c;
      margin-bottom: 50px;
}


.faq-container {
    max-width: 900px;
	margin: 0 auto;
}

.faq-item
{
   background  :       white;
	   margin-bottom: 20px;
	   border-radius: 10px;
	    overflow: hidden;
	  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.faq-question {
    width: 100%;
  padding: 25px 30px;
                    background :     white;
  border     :    none;
  text-align: left;
    font-size: 1.15rem;
      font-weight: 600;
  color: #2c3e50;
    cursor: pointer;
	 display: flex;
	 justify-content: space-between;
               align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-icon svg {
  stroke: none;
   fill: #667eea;
   transition: transform 0.3s;
}

.faq-item.active .faq-icon svg {
  transform: rotate(180deg);
}

.faq-answer  {
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  max-height: 0;
}

.faq-item.active .faq-answer {
   max-height: 500px;

  padding  : 0 30px 25px;
}

.faq-answer p {
	   color: #4a5568;
    line-height: 1.8;
    margin :        0;
}

.final-cta  {
  padding: 100px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align: center;
}

.final-cta-content h2 {
   color: white;
    font-size : 2.8rem;
  margin-bottom: 20px;
}

.final-cta-content p {
  color: rgba(255,255,255,0.95);
  font-size: 1.3rem;
   max-width    :        700px;
   margin: 0 auto 35px;
}

.final-cta-button {
    display: inline-block;
   background: white;
  color: #667eea;
  padding: 18px 40px;
	border-radius :     8px;
   text-decoration: none;
    font-weight :      600;
  font-size :    1.15rem;
  transition :    transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.final-cta-button:hover


{

	  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
	}

.thankyou-section {


    padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
       min-height: 70vh;
}

.thankyou-container     {
   max-width: 900px;
    margin: 0 auto;
  text-align: center;
}

.success-icon 
 {
  margin-bottom: 30px;
}

.success-icon svg {
	  stroke-linecap   :round;
  stroke-linejoin: round;

}  

.thankyou-container h1 {

	  font-size: 2.8rem;
  color: #1a202c;
     margin-bottom: 20px;
}

.thankyou-message {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 60px;
	line-height: 1.7; 

}

.next-steps {
       margin-bottom: 60px;
}



.next-steps h2 {
    font-size: 2.2rem;
    color: #2c3e50;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap   : 30px;
   margin-top: 40px;
}

.step-card {
    background: white;
    padding    :   35px 25px;
   border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.step-number
	{
					 width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	 border-radius: 50%;
    display: flex;
    align-items: center;
   justify-content: center;
      font-size: 1.5rem;
   font-weight   :    700;
    margin: 0 auto 20px;
	}

.step-card h3 {
  font-size: 1.3rem;
	 color: #2c3e50;
    margin-bottom: 15px;
}

.step-card p
	{

	  color: #4a5568;
    line-height: 1.7;
	} 

.thankyou-info-box {
    background: white;
  padding: 40px;
   border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
   margin-bottom: 40px;
}

.thankyou-info-box h3 {
    font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom   : 15px;
}

.thankyou-info-box p  {
                    color: #4a5568;
     font-size: 1.1rem;
   margin-bottom: 25px;
   line-height: 1.7;
}

.thankyou-links {
  display: flex;
          gap: 20px;
    justify-content: center;
  flex-wrap: wrap;
}

.thankyou-link-btn {
    display    :        inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 14px 30px;
	border-radius: 8px;
	 text-decoration   : none;
   font-weight :    600;
         transition: transform 0.3s, box-shadow 0.3s;
	}

.thankyou-link-btn.secondary {
   background: #e8eef5;
  color  :#2c3e50;
}

.thankyou-link-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);

}

.contact-reminder {
	background: white;
   padding: 30px;
   border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-reminder p {
  margin-bottom: 10px;
   color: #4a5568;
}

.phone-highlight {
   font-size:    1.8rem;
  margin-top    :    10px;
   color: #667eea;
      font-weight    : 700;
}

.resources-preview    {
  padding:      80px 20px;
   background: white;
}

.resources-preview h2 {
    text-align: center;
     font-size: 2.5rem;
      color    :     #1a202c;
     margin-bottom: 15px;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap  :    35px;
    margin-top: 50px;
}

.resource-card {
       background: #f8f9fa;
    padding: 35px;
   border-radius: 10px;
    text-align:     center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
} 

.resource-icon {
    width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
    display   :       flex;
   align-items: center;
	justify-content    :    center;
  margin: 0 auto 20px;
} 

.resource-icon svg {
   stroke:   none;
    fill: white;
}

.resource-card h3 {

  font-size: 1.5rem;
  color: #2c3e50;
   margin-bottom: 15px;

}

.resource-card p {
  color: #4a5568;
    line-height   :      1.7;
}  @media (max-width: 768px) {
    .page-hero {
        padding: 80px 20px 60px;
    }

    .hero-overlay h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .service-detail-item.reverse .service-img-wrapper {
        order: 1;
    }

    .service-detail-item.reverse .service-description {
        order: 2;
    }

    .service-description h2 {
        font-size: 1.8rem;
    }

    .program-details {
        flex-direction: column;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .pricing-wrapper {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .thankyou-message {
        font-size: 1.1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-links {
        flex-direction: column;
    }

    .thankyou-link-btn {
        width: 100%;
    }
}