* {
    margin  :   0;
	padding: 0;
	 box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
   color: #2c3e50;
  background: #ffffff;
}

.main-navigation {
  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: 1400px;
   margin    :     0 auto;
    padding: 0 2rem;
  display: flex;
                    justify-content: space-between;
    align-items:     center;
}

.logo-section .site-logo {


    height :   48px;
  width: auto;
     }

.menu-toggle
{


    display: none;
   cursor :     pointer;
    width: 32px;
   height: 32px;

}  

.menu-toggle img{

    width: 100%;
  height  :   100%;
   stroke: #2c3e50;
    fill  : none;
    stroke-width: 2;

}

.nav-links {
    display   :flex;
        list-style: none;
    gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
	transition :       color 0.3s;
   font-size: 1.05rem;
} 

.nav-links a:hover {
    color: #667eea;
}

.hero-section {
     display  :        grid;
    grid-template-columns: 1fr 1fr;
  gap: 4rem;
    max-width: 1400px;
               margin: 0 auto;
  padding: 5rem 2rem;
				 align-items:   center;

     }



.hero-content h1 {
    font-size: 3.2rem;
        font-weight: 700;
  color: #1a202c;
   margin-bottom: 1.5rem;
         line-height: 1.2;
}

.hero-subtitle{
    font-size: 1.25rem;
	color: #4a5568;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
                    gap: 1.5rem;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
  padding   :     0.9rem 2rem;
   text-decoration: none;
   border-radius: 6px;
  font-weight: 600;
    transition:     all 0.3s;
    display: inline-block;
    font-size: 1.05rem;
}


.primary-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color     :     #ffffff;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.secondary-btn  {
   border: 2px solid #667eea;
   background: transparent;
		 color: #667eea;
     }

.secondary-btn:hover {
   background: #667eea;
   color: #ffffff;
}

.hero-visual img {
      width: 100%;
  height: auto;
    border-radius   :        12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.intro-section {
  padding: 5rem 0;
   background: #f8f9fa;
}

.container-fluid {
       max-width: 1400px;
  margin: 0 auto;
	 padding: 0 2rem;
	}

.intro-grid {
    display: grid;
   grid-template-columns     : 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
   font-size: 2.5rem;
    margin-bottom: 1.5rem;
  color    :   #1a202c;
}

.intro-text p {
       font-size:       1.1rem;
   margin-bottom: 1.2rem;
   color: #4a5568;
     }

.intro-image img {
    width: 100%;
				 border-radius     :    12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);


}

.benefits-area {
	 padding: 5rem 0;
}

.section-heading {
   font-size: 2.5rem;
   text-align: center;
    margin-bottom: 3.5rem;
   color: #1a202c;
}

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2.5rem;
}

.benefit-card {
   background: #ffffff;
 padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}  

.benefit-card:hover


{
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.benefit-icon {
   width: 56px;
   height: 56px;
		 margin-bottom: 1.5rem;
}

.benefit-icon img {
   width: 100%;

	   height: 100%;

	  stroke: #667eea;

	                    fill: none;

	                    stroke-width :     2;

	   stroke-linecap: round;

	    stroke-linejoin:        round;
}

.benefit-card h3 {
  font-size: 1.4rem;
    margin-bottom: 1rem;
	color: #1a202c; 

}

.benefit-card p {
    color: #4a5568;
    line-height: 1.7;
}

.methodology-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	padding: 5rem 0;
}

.methodology-wrapper {
   display: grid;
	grid-template-columns: 1fr 1.3fr;
      gap: 4rem;
    align-items: center;
	
}

.method-visual img {
      width: 100%;
       border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.method-content h2{
    font-size     :   2.5rem;
   margin-bottom: 2.5rem;
  color:#1a202c;
}

.method-steps {

	    display: flex;
         flex-direction: column;
    gap: 2rem;
     }

.step-item {
                    display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
          font-size: 2rem;
  font-weight: 700;
  color: #667eea;
      min-width  :  60px;
}

.step-details h4 {
  font-size: 1.3rem;
   margin-bottom: 0.5rem;
    color: #1a202c;
}

.step-details p {
   color: #4a5568;
   line-height: 1.6;
}



.cta-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 4rem 2rem;
    text-align  :center;
    color: #ffffff;
}

.cta-content h2 {
     font-size: 2.5rem;
    margin-bottom: 1rem;


}

.cta-content p {

	   font-size: 1.2rem;
  margin-bottom: 2rem;
   max-width: 800px;
    margin-left    :     auto;
    margin-right: auto;
   opacity: 0.95;

}

.cta-button {
    padding :1rem 2.5rem;
	background: #ffffff;
   color: #667eea;
   text-decoration: none;
	 border-radius: 6px;
   font-weight: 600;
   display: inline-block;
    transition: all 0.3s;
   font-size: 1.1rem;
}

.cta-button:hover
{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,255,255,0.3);
}

.programs-section {
  padding: 5rem 0;
 background: #f8f9fa; 

}

.programs-layout {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
}

.program-box {
  background: #ffffff;
          border-radius   :  12px;
   overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
          transition: transform 0.3s;
}

.program-box:hover {
  transform: translateY(-8px);
}

.program-header {
  padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}

.program-header h3 {
        margin-bottom: 0.5rem;
   		font-size: 1.8rem;
}

.program-duration   {
   opacity: 0.9;
    font-size: 1.05rem;
}

.program-image img{
	 width: 100%;
   height: 280px;
    object-fit: cover;
}

.program-description {
    padding   :    2rem;
}

.program-description p {
	  color: #4a5568;
   margin-bottom   :    1.5rem;
  line-height: 1.7;


}

.program-features {
   list-style :   none;
	padding-left: 0;
}

.program-features li {
      padding   : 0.6rem 0;
  color :#2c3e50;
        position: relative;
        padding-left: 1.8rem;
}

.program-features li:before {

  content: "→";
    position: absolute;
  color: #667eea;
 font-weight: 700;
    left: 0;
	}

.testimonials-area  
  {
   padding :   5rem 0;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap    :        2.5rem;
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
         border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   border-left: 4px solid #667eea;
}

.testimonial-text {
        line-height: 1.7;
  margin-bottom: 1.5rem;
    font-style: italic;
   color: #4a5568;
 font-size     :1.05rem;
}

.testimonial-author {
   display: flex;
    flex-direction: column;
}

.testimonial-author strong {

	    color: #1a202c;
    font-size :      1.1rem;
    margin-bottom: 0.3rem;}

.testimonial-author span


{
    color: #718096;
  font-size: 0.95rem;
}

.contact-section

{
   padding: 5rem 0;
   background:     #f8f9fa;
	
}

.contact-wrapper {

	   display: grid;
   grid-template-columns   :     1fr 1.5fr;
  gap  :        4rem;


}

.contact-info h2     {

	margin-bottom: 1rem;
  color: #1a202c;
  font-size: 2.5rem; 


}

.contact-info p {
  color: #4a5568;
     font-size: 1.1rem;
  margin-bottom: 2rem;
}

.info-blocks {
       display: flex;
	flex-direction: column;
                    gap     :    2rem;


}


.info-item     {

		 display: flex;
   gap: 1.5rem;
   align-items: flex-start;
	}

.info-icon {
	width: 48px;
	height: 48px;
   flex-shrink: 0;
}

.info-icon img {
	width: 100%;
   height: 100%;
   stroke: #667eea;
    fill:       none;
   stroke-width: 2;
    stroke-linecap: round;
	 stroke-linejoin: round;
}

.info-text {

               display: flex;
   flex-direction: column;


}

.info-text strong {
     color: #1a202c;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;

}

.info-text a, .info-text span {
   color: #4a5568;
  text-decoration     :none;
}

.info-text a:hover {
	    color: #667eea;
}

.contact-form-container {
  background: #ffffff;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-form {
    display: flex;
  flex-direction: column;
    gap: 1.5rem;
}

.form-row {

   display: grid;
       grid-template-columns: 1fr 1fr;
   gap     :1.5rem;
	}

.form-group {
   display: flex;
  flex-direction: column;
}

.form-group label {
   margin-bottom: 0.5rem; 
	   font-weight: 500; 
	   color  :   #2c3e50;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 0.8rem;
  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 {
	 border-color: #667eea;
    outline: none;
}

.submit-btn		{
	padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
  border: none;
  border-radius: 6px;
   font-size: 1.1rem;
  font-weight: 600;
	 cursor: pointer;
	transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.site-footer {
    background: #1a202c;
  color :        #ffffff;
    padding    :    3rem 0 1.5rem;
}

.footer-content {


   max-width: 1400px;
  margin:       0 auto;
    padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
   gap     :        3rem;
    margin-bottom: 2rem;


	}

.footer-logo {
	height:        42px;
    width    :   auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1rem; 

}

.footer-tagline {
    color  : #cbd5e0;
     font-size  : 0.95rem;
}

.footer-section h4 {
		 margin-bottom: 1rem; 
	    font-size: 1.2rem;
}

.footer-links {
   list-style  :none;
}

.footer-links li {
  margin-bottom: 0.7rem;


}

.footer-links a {
  color: #cbd5e0;
    text-decoration :        none;
   -moz-transition: color 0.3s;
    transition: color 0.3s;


}

.footer-links a:hover {
   color: #667eea;
}

.footer-section p {
   color: #cbd5e0;
	line-height: 1.7;
    margin-bottom: 0.5rem;
}

.footer-section a  {
   color: #cbd5e0;
   text-decoration: none;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-bottom {

	    border-top   :        1px solid #2d3748;
    padding-top: 1.5rem;
  text-align: center;
   max-width   :       1400px;
 margin  :       0 auto;
    padding-left:  2rem;
     padding-right: 2rem;}

.footer-bottom p{
    color: #a0aec0;
   font-size    : 0.9rem;
}@media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 72px;
        right: -100%;
        background: #ffffff;
        flex-direction: column;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .methodology-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .programs-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .primary-btn, .secondary-btn {
        text-align: center;
        width: 100%;
    }
}.policySection {


      padding   :  80px 2rem;
   background   :        #f8f9fa;}

.policyContainer {
	  text-align: left;
		max-width :       800px;
   margin: 0 auto; 

     }

.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: 5rem 2rem;
  text-align: center;
  color: #ffffff;
}

.page-hero-content h1  
  {
   font-size: 3rem;
  margin-bottom: 1rem;
   font-weight: 700;
}

.page-hero-content p {
  font-size: 1.3rem;
  opacity: 0.95;
}

.services-intro {
   padding: 5rem 0;
    background: #ffffff;
}

.services-intro-layout
	{
   display: grid;
	grid-template-columns: 1.3fr 1fr;
   gap: 4rem;
    align-items    :  center;
}

.intro-content h2 {
  font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.intro-content p {
	 font-size: 1.1rem;
				 color: #4a5568;
       margin-bottom: 1.2rem;
  line-height: 1.7;
     }

.intro-visual img {
         width: 100%;
   border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.detailed-services {


    padding: 5rem 0;
    background: #f8f9fa;


} 

.service-detail-block {


  display: grid;
   grid-template-columns: 1.2fr 1fr;
	 gap: 4rem;
   margin-bottom: 5rem;
	align-items: center;

}

.service-detail-block.reverse {
	          grid-template-columns: 1fr 1.2fr;
}

.service-detail-block.reverse .service-detail-content {
         order: 2;
}

.service-detail-block.reverse .service-detail-image {

	    order: 1;
	}  

.service-badge {

    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
	padding: 0.5rem 1.2rem;
  border-radius: 20px;
				 font-size: 0.9rem;
   font-weight: 600;
  margin-bottom: 1rem;
	}

.service-detail-content h3 {
	 font-size: 2rem;
    margin-bottom: 1rem;
   color: #1a202c;
} 

.service-detail-content > p {

	   color: #4a5568;
          margin-bottom: 2rem;
   line-height: 1.7;
  font-size: 1.1rem;


}

.service-highlights {
    background: #ffffff;
    padding: 1.5rem;
   border-radius: 10px;
    margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.highlight-item {
   display: flex;
   align-items: center;
    gap: 1rem;
   padding     :   0.8rem 0;
}

.highlight-icon {
    flex-shrink: 0;
   fill: none;
  stroke-width: 2.5;
   stroke  :       #667eea;
   width: 24px;
    height: 24px;}

.highlight-item span {
 color  :        #2c3e50;
    font-size: 1rem;
}

.service-topics {

  margin-top: 2rem;

}

.service-topics h4 {
    font-size: 1.3rem;
   margin-bottom: 1rem;
  color     : #1a202c; 
	
}

.service-topics ul 
 {


       list-style     :  none;
     padding-left: 0;
     }

.service-topics ul li {
    padding: 0.6rem 0; 
	   color: #4a5568; 
	   position:      relative; 
		padding-left: 1.8rem;
}

.service-topics ul li:before {
	  content: "•";
   position     :    absolute;
  left: 0;
   color: #667eea;
   font-size: 1.5rem;
    line-height: 1;

} 

.service-detail-image img {
    width: 100%;
   border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.process-timeline {
    padding: 5rem 0;
    background:    #ffffff;
}

.timeline-container {
   max-width: 900px;
   margin: 0 auto;
}

.timeline-item {
  display: grid;
   grid-template-columns: 80px 1fr;
   gap: 2rem;
   margin-bottom: 3rem;
  position: relative;


}

.timeline-item:not(:last-child):after {
  content: "";
   position: absolute;
   left: 39px;
    top: 80px;
   width:   2px;
  height: calc(100% + 2rem);
	 background: #e2e8f0;
}

.timeline-marker     {
    width: 80px;
   height  :80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
   display: flex;
   align-items: center;
  justify-content: center;
         position: relative;
   z-index :        1;
}

.timeline-marker span {
  font-size: 2rem;
    font-weight: 700;
  color: #ffffff;}

.timeline-content h4   {

	    font-size: 1.5rem;
	margin-bottom   :        0.8rem;
    color: #1a202c;

}

.timeline-content p {
		color: #4a5568;
    line-height: 1.7;
   font-size: 1.05rem;

}

.faq-section {
   padding: 5rem 0;
    background: #f8f9fa;
}

.faq-grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;} 

.faq-item {
    background: #ffffff;
	padding: 2rem;
     border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s;
}



.faq-item:hover {
  transform: translateY(-5px);
}

.faq-item h4 {
   font-size: 1.2rem;
    margin-bottom: 1rem;
   color: #1a202c;
	
}

.faq-item p {
   color: #4a5568;
	    line-height:        1.7;
}

.cta-services {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    text-align: center;
	color:    #ffffff;
	} 

.cta-services-content h2 {
    font-size: 2.5rem;
	 margin-bottom: 1rem;
}

.cta-services-content p		{
    font-size: 1.2rem;
   margin-bottom: 2rem;
        max-width: 800px;
    margin-left: auto;
   margin-right: auto;
   opacity: 0.95;
}

.thankyou-hero     {
  min-height: calc(100vh - 200px);
   display: flex;
    align-items: center;
	justify-content: center;
      padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thankyou-container {
      max-width     :   800px;
    text-align: center;}

.thankyou-icon {
   width: 100px;
   height: 100px;
   margin: 0 auto 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: 50%;
	 display: flex;
   align-items: center;
    justify-content: center;
}

.thankyou-icon img {
   width: 60px;
   height: 60px;
   stroke: #ffffff;
	 fill: none;
 stroke-width: 2.5; 

}

.thankyou-hero h1 {
	  font-size: 3rem;
    color: #1a202c;
     margin-bottom: 1rem;
     }

.thankyou-subtitle {
 font-size: 1.3rem;
	    color: #4a5568;
	     margin-bottom     :       3rem; 

}

.thankyou-info-box {
	background: #ffffff;
  padding     :        2.5rem;
    border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
	text-align: left;
}

.thankyou-info-box h3 {
        font-size     :1.8rem;
      margin-bottom     : 2rem;
               color: #1a202c;
          text-align :     center;
}

.next-steps {
  display    :      flex;
	flex-direction: column;
	gap: 2rem;
}

.next-step {
   display: flex; 
	  gap: 1.5rem; 
	   align-items: flex-start;
}

.step-number {
    width    : 50px;
               height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  font-size: 1.5rem;
    font-weight:    700;
   flex-shrink: 0;
}

.step-text h4 {


   font-size: 1.3rem;
  margin-bottom  :     0.5rem;
    color     :       #1a202c;


}  

.step-text p {
   color: #4a5568;
  line-height: 1.7;

}

.thankyou-cta {


         margin-bottom   :        3rem;
}

.thankyou-cta p {
    margin-bottom: 1.5rem; 
	  color: #4a5568; 
	    font-size: 1.1rem;
}

.thankyou-buttons  {
    display: flex;
	gap :        1.5rem;
    justify-content     :center;
    flex-wrap: wrap;
}

.thankyou-contact-info {
   background     :#ffffff;
   padding  :  2rem;
       border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.thankyou-contact-info h3 {
          font-size: 1.5rem;
	margin-bottom: 0.8rem;
        color: #1a202c;
}

.thankyou-contact-info p {


  margin-bottom: 1rem;
   color: #4a5568;}

.phone-link {
	transition: color 0.3s;
    text-decoration: none;
  display :    inline-block;
   color  :#667eea;
  font-weight: 600;
  font-size: 1.5rem; 
	
}

.phone-link:hover {
	color: #764ba2;
}

.thankyou-related {
   padding: 5rem 0;
       background: #ffffff;


}

.related-content-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2.5rem;
}

.related-card
	{
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.related-card:hover {
  transform: translateY(-8px);

}

.related-image img {
  width: 100%;
  height: 220px;
  object-fit:cover;
}

.related-text {
   padding: 2rem;

}

.related-text h4 {
   font-size   :     1.3rem;
  margin-bottom: 0.8rem;
  color   :    #1a202c;
} 

.related-text p {
  color: #4a5568;
	line-height: 1.7;
}@media (max-width: 968px) {
    .page-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .services-intro-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-detail-block {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3.5rem;
    }
    
    .service-detail-block.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-detail-block.reverse .service-detail-content {
        order: 1;
    }
    
    .service-detail-block.reverse .service-detail-image {
        order: 2;
    }
    
    .timeline-item {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }
    
    .timeline-marker {
        width: 60px;
        height: 60px;
    }
    
    .timeline-marker span {
        font-size: 1.5rem;
    }
    
    .timeline-item:not(:last-child):after {
        left: 29px;
        top: 60px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-hero h1 {
        font-size: 2.3rem;
    }
    
    .thankyou-buttons {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-hero h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-subtitle {
        font-size: 1.1rem;
    }
    
    .thankyou-info-box {
        padding: 1.5rem;
    }
    
    .related-content-grid {
        grid-template-columns: 1fr;
    }
}