* 
 {
    margin: 0;
    padding:        0;
		box-sizing: border-box;
}

body		{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.7;
  color: #2c3e50;
		background: #ffffff;
}

.main-navigation {
    position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  z-index: 1000;
   padding: 1rem 0;
}

.nav-content {
    max-width: 1320px;
  margin   : 0 auto;
   padding: 0 2rem;
        display: flex;
	justify-content: space-between;
    align-items: center;
	
}

.brand-section .brand-mark {
    height  :52px;
  width: auto;


}

.burger-toggle {

	    display: none;
    background: none;
  border:  none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
	}

.burger-toggle span {
    width :       28px;
	height: 3px;
  background: #2c3e50;
   transition: 0.3s;
}

.nav-links {
	display: flex;
   gap     :     2.5rem;
}

.nav-links a {
         text-decoration: none;
	color: #2c3e50;
  font-weight     :     500;
	 font-size: 1.05rem;
   transition:     color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-area {
  margin-top  :    90px;
   padding  :        5rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.hero-wrapper {
    max-width: 1320px;
   margin: 0 auto;
   display: grid;
    grid-template-columns:       1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
         font-size: 3.2rem;
  color    :   #1a252f;
	 margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {

	  font-size: 1.2rem;
  color:  #5a6c7d;
        margin-bottom   :       2.5rem;
}

.hero-actions {
    display  :       flex;
        gap :        1.5rem;
}

.primary-btn, .secondary-btn {
    padding: 1rem 2.2rem;
    text-decoration: none;
  border-radius:    6px;
	 font-weight: 600;
  font-size: 1.05rem;
	transition: all 0.3s;
}

.primary-btn {
	    background     :  #3498db; 
	    color: white;
	}

.primary-btn:hover {
   background: #2980b9;
	  transform: translateY(-2px);
	  box-shadow: 0 8px 20px rgba(52,152,219,0.3);

}

.secondary-btn     {
  background: white;
   color: #3498db;
   border  :   2px solid #3498db;
}

.secondary-btn:hover   {
    color: white;
	 background: #3498db; 
	
}

.hero-visual img {
   width   :      100%;
   border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.intro-segment {
    padding   :  6rem 2rem;
    background: white;
}

.segment-container	{
   max-width: 1220px;
   margin: 0 auto;
     }



.segment-container h2 {


        font-size: 2.6rem;
    text-align: center;
   margin-bottom: 1.5rem;
	color     :      #1a252f;
     }

.intro-lead {

  text-align: center;
   font-size: 1.15rem;
   color: #5a6c7d;
    max-width: 820px;
  margin: 0 auto 4rem;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card
	{
  padding: 2.5rem;
         background: #f8f9fb;
   border-radius:       10px;
   transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover     {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
   width: 56px;

	   height: 56px;

	                    margin-bottom: 1.5rem;

	    stroke: #3498db;

	    fill  :   none;

	    stroke-width    :      2;}

.benefit-card h3 {
	font-size     :        1.5rem;
    margin-bottom: 1rem;
   color: #1a252f;
}

.benefit-card p {
  color   :       #5a6c7d;
   	line-height: 1.7;
}


.approach-block {
   padding: 6rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.approach-layout {

    max-width: 1320px;
   margin: 0 auto;
   display     :       grid;
  grid-template-columns: 1fr 1fr;
	gap: 4rem;
    align-items: center;


}

.approach-image img {
  width  :     100%;
    border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.approach-content h2 {
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.approach-content > p {
  font-size: 1.1rem;
	 margin-bottom: 3rem;
	opacity: 0.95;
}

.process-steps {
  display: flex;
      flex-direction: column;
  gap: 2rem;
}

.step-item {
       gap: 1.5rem;
    display: flex;
   align-items: flex-start;
	}


.step-number {
  font-size    :   2rem;
   font-weight :      700;
  color: rgba(255,255,255,0.4);
  min-width: 60px;
}

.step-text h4 {
  font-size: 1.3rem;
   margin-bottom: 0.5rem;
}

.step-text p {
    opacity : 0.9;
}

.programs-showcase {
    background: #f5f7fa; 
    padding: 6rem 2rem;

}

.programs-wrapper {
  max-width: 1320px;
  margin: 0 auto;
}

.programs-wrapper h2   {
          font-size: 2.6rem;
  text-align: center;
  margin-bottom    :     1rem;
    color: #1a252f;}

.section-intro {
  text-align: center;
	font-size     :     1.15rem;
	 color: #5a6c7d;
   margin-bottom: 4rem;
}

.program-cards {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.program-card {
  background: white;
  padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.program-card.featured {
    border: 2px solid #3498db;
  transform: scale(1.05);
}

.program-card:hover	{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.program-icon {

	    stroke: #3498db;
   width: 64px;
  margin-bottom: 1.5rem;
    stroke-width: 2;
	fill: none;
   height: 64px;
}

.program-card h3 {
  font-size :    1.7rem;

  margin-bottom: 1rem;

   color: #1a252f;
}

.program-card > p {
    color: #5a6c7d;
	margin-bottom: 1.5rem;
}

.program-features {
         margin-bottom: 2rem;
  list-style: none;
}

.program-features li {
  padding: 0.6rem 0;
    color:       #5a6c7d;
    border-bottom: 1px solid #e8ecf1;


}

.program-features li:before
	{
  content: "✓ ";
   color: #3498db;
   font-weight: 700;
    margin-right: 0.5rem;
	
}  

.program-link {
    background: #3498db;
   text-decoration: none;
    border-radius: 6px;
    color: white;
   padding: 0.9rem 2rem;
   display: inline-block;
   font-weight: 600;
   transition: all 0.3s;
}

.program-link:hover {
   background     :#2980b9;
}

.cta-banner {

	   padding: 5rem 2rem; 
	  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%); 
	  color: white; 
	   display: grid; 
	  grid-template-columns: 1.2fr 1fr; 
	    gap: 4rem; 
	    align-items: center;


}

.cta-content {
  max-width    : 680px;
}

.cta-content h2 {
    font-size  :     2.8rem;
  margin-bottom: 1.5rem;
}

.cta-content p {


        font-size: 1.15rem;
    margin-bottom: 2.5rem;
    opacity: 0.92;
	}

.cta-button	{
   text-decoration     :      none;
   font-weight: 600;
  padding: 1.2rem 2.5rem;
   font-size: 1.1rem;
    color: white;
  background: #3498db;
    display: inline-block;
  transition: all 0.3s;
  border-radius: 6px;
}

.cta-button:hover {
   background: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(52,152,219,0.4);
}

.cta-visual img {
	width: 100%;
		 border-radius: 12px;
	  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.testimonial-area {
		padding: 6rem 2rem;
		 background :     white;


}  

.testimonial-container {
  max-width: 1320px;
    margin: 0 auto;
}

.testimonial-container h2 {
       font-size: 2.6rem;
  text-align: center;
  margin-bottom: 4rem;
  color: #1a252f;
}

.testimonial-grid {
   display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.testimonial-box  {
  background: #f8f9fb;
	padding: 2.5rem;
  border-radius: 10px;
    border-left: 4px solid #3498db;
}

.testimonial-text {
                    font-style: italic;
  color :    #2c3e50;
	 margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-author {
  font-weight: 600;
   color   :   #5a6c7d;
}

.final-motivation {
  padding: 6rem 2rem;
	background: #f5f7fa;
}

.motivation-wrap {
   display: grid;
  max-width  :     1320px;
   grid-template-columns: 1fr 1fr;
 gap: 4rem;
   margin: 0 auto;
    align-items: center;
}

.motivation-image img {
    width    :  100%;
    border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
	}

.motivation-text h2 {
  font-size: 2.5rem; 
    margin-bottom: 1.5rem; 
   color: #1a252f;
}

.motivation-text p {
   font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
	 line-height: 1.8;
}

.discover-btn {
  display: inline-block;
   margin-top : 1rem;
  padding: 1rem 2.2rem;
      background: #3498db;
    color :       white;
   text-decoration: none;
   border-radius  :      6px;
  font-weight: 600;
   transition: all 0.3s;
}

.discover-btn:hover {

	  background: #2980b9;

  transform: translateY(-2px);}

.contact-section {
    padding: 6rem 2rem;
    background: white;
}

.contact-wrapper {
    max-width: 1220px;
        margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
     gap: 4rem;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
   color: #1a252f; 
	
}

.contact-info > p {
    font-size: 1.1rem;
  color: #5a6c7d;
          margin-bottom: 3rem;
}

.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;
	stroke: #3498db;
  fill: none;
  stroke-width: 2;
	
}

.info-item h4  {
  font-size: 1.2rem;
   margin-bottom: 0.5rem;
    color    :   #1a252f;
}

.info-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-form {
    background: #f8f9fb;
  padding: 2.5rem;
               border-radius: 12px;
}

.form-group {
  margin-bottom: 1.8rem;
}

.form-group label {
   display: block;
  margin-bottom: 0.6rem;
   font-weight: 600;
   color   : #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid #e8ecf1;
  padding: 0.9rem;
 width: 100%;
   font-family:       inherit;
  border-radius: 6px;
    transition: border-color 0.3s;
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   border-color   :     #3498db;
   outline: none;
}


.submit-btn {
        width: 100%;
       padding: 1.1rem;
   background: #3498db;
   color: white;
    border: none;
    border-radius: 6px;
   font-size: 1.1rem;
 font-weight: 600;
  cursor: pointer;
	transition: all 0.3s;
}

.submit-btn:hover {
   background     :  #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52,152,219,0.3); 

}

.site-footer {
    background : #1a252f;
   color: white;
  padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1320px;
   margin: 0 auto;
 display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
    margin-bottom   :   3rem;
	}

.footer-brand p {
   margin-top    :   1rem;
   opacity: 0.8;
   line-height   :     1.7;
}

.footer-logo {
    height: 48px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-links h4,
.footer-contact h4 {
   font-size: 1.2rem;
   margin-bottom    :      1.2rem;
}

.footer-links a {
      display: block;
  color: rgba(255,255,255,0.8);
	text-decoration: none;
    margin-bottom: 0.8rem;
         transition: color 0.3s;
}

.footer-links a:hover {
    color     :      white;
}  

.footer-contact p     {
  opacity: 0.8;
   margin-bottom: 0.8rem;
  line-height   :        1.8;
}

.footer-bottom {
		 max-width: 1320px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
	text-align: center;
    opacity: 0.7;
}@media (max-width: 968px) {
    .burger-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 78px;
        right: -100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        transition: right 0.3s;
        width: 280px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .hero-wrapper,
    .approach-layout,
    .motivation-wrap,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-banner {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 2.4rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .benefit-grid,
    .program-cards,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}.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;
    }
}.services-hero {
	margin-top: 90px;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  text-align: center;
}

.services-hero-content {
   max-width: 920px;
      margin: 0 auto;
}

.services-hero h1		{


   font-size:    3rem;
	margin-bottom: 1.2rem;}

.services-hero-subtitle {
   font-size: 1.2rem;
   opacity: 0.95;
    line-height    :  1.7;
}

.services-overview {
  padding: 6rem 2rem;
  background: white;
}

.overview-container
{
    max-width: 1320px;
	margin: 0 auto;
}

.overview-intro {
       margin-bottom: 4rem;
    text-align: center;


}

.overview-intro h2 {

	  font-size: 2.5rem;
    color: #1a252f;
  margin-bottom     :  1rem;
     }

.overview-intro p {


  font-size: 1.15rem;
  color :  #5a6c7d;
   max-width: 780px;
   margin: 0 auto;


}

.service-detailed-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.service-detail-card

{
      background: #f8f9fb;
    border-radius: 12px;
    padding: 2.5rem;
          transition  :       all 0.3s;
    position: relative;
	}

.service-detail-card.highlighted {
               border: 2px solid #3498db;
	 background: white;
}

.service-detail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-badge {
    position: absolute;

    top: -12px;

  right: 20px;

    background: #3498db;

    color: white;

   padding: 0.5rem 1.2rem;

  border-radius: 20px;

    font-weight: 600;

  font-size: 0.9rem;
}

.service-detail-header {

   margin-bottom: 1.5rem;}

.service-detail-icon
	{
                    width: 64px;
	height: 64px;
   margin-bottom:   1.2rem;
   stroke: #3498db;
    fill: none;
  stroke-width: 2;
}

.service-detail-card h3 {
	   font-size: 1.8rem;
  color: #1a252f;
  margin-bottom: 1rem;
     }

.service-description     {
    color: #5a6c7d;
   line-height: 1.7;
        margin-bottom: 1.8rem;
}

.service-features-block h4 {
  font-size: 1.1rem;
  color: #1a252f;
	 margin-bottom: 1rem;
}

.service-feature-list {
   list-style: none;
      margin-bottom: 1.8rem;

}


.service-feature-list li {
    color: #5a6c7d;
  position: relative;
   padding    :   0.7rem 0;
	padding-left   :  1.8rem;
}


.service-feature-list li:before {
  content: "→";
    position: absolute;
   left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-duration,
.service-ideal {
  color: #5a6c7d;
    margin-bottom: 1.2rem;
	line-height: 1.7;
}

.service-duration strong,
.service-ideal strong {
  color: #1a252f;
}

.service-cta-btn {
   display: inline-block;
		width: 100%;
	  text-align :    center;
	       padding: 1rem;
	    background: #3498db;
	   color: white;
	  text-decoration:        none;
	   border-radius: 6px;
	   font-weight: 600;
		margin-top: 1.5rem;
	   transition: all 0.3s;
}

.service-cta-btn:hover {
  background: #2980b9;
  transform: translateY(-2px);
}

.methodology-section {


    padding: 6rem 2rem; 
	   background: #f5f7fa;


}

.methodology-wrapper {
  max-width: 1320px;
    margin: 0 auto;
}

.methodology-wrapper h2 {
    font-size:     2.5rem;
   text-align: center;
   color: #1a252f;
    margin-bottom: 1rem;
}

.methodology-intro {
    text-align: center;
   font-size: 1.15rem;
    color: #5a6c7d;
   max-width: 780px;
   margin: 0 auto 4rem; 
	
}

.methodology-grid {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 2rem; 
	
}

.methodology-item
{
   background    :      white;
   padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.method-number   {
  font-size: 2.5rem;
		 font-weight: 700;
  color: rgba(52,152,219,0.3);
    margin-bottom: 1rem;
}

.methodology-item h3 {
   font-size :        1.4rem;
   color: #1a252f;
         margin-bottom: 1rem;
}

.methodology-item p   {
  color: #5a6c7d;
    line-height   :1.7;
}

.additional-services {
               padding  :      6rem 2rem; 
	    background: white;
}

.additional-container {

   max-width: 1220px;
   margin: 0 auto;


}

.additional-container h2 {
   font-size: 2.5rem;
    text-align: center;
	 color:      #1a252f;
  margin-bottom: 3rem;
}

.additional-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
}

.additional-card {


  text-align     :  center;
         padding: 2rem;


}

.additional-icon {
   width: 56px;
  height: 56px;
	margin: 0 auto 1.5rem;
    stroke: #3498db;
   fill: none;
  stroke-width: 2;
}

.additional-card h3 {
  margin-bottom: 1rem;
   font-size: 1.5rem;
    color: #1a252f;
}

.additional-card p {
        color: #5a6c7d;
  line-height: 1.7;
}


.services-process
	{


    padding    :     6rem 2rem;
  background: linear-gradient(135deg, #1a252f 0%, #2c3e50 100%);
  color    :  white;
     }

.process-container {
   max-width: 1320px;
	 margin: 0 auto;
    display: grid;
	grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
	
}

.process-content h2   {
  font-size: 2.5rem;
   margin-bottom:    3rem;

} 

.process-timeline 
 {
  display :  flex;
   flex-direction: column;
  gap: 2.5rem;
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
  align-items: flex-start;
}

.timeline-marker {
	  width: 16px; 
   height: 16px; 
       background: #3498db; 
    border-radius: 50%; 
    margin-top:       0.3rem; 
  flex-shrink: 0;}

.timeline-content h4 {
   font-size: 1.3rem;
 margin-bottom: 0.7rem;
}

.timeline-content p {
    opacity: 0.9;
    line-height: 1.7;
}

.process-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4); 

}



.services-cta     {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	text-align: center;
	color: white;
}  

.services-cta-content {
 max-width    :820px;
    margin: 0 auto;
}

.services-cta h2	{
    font-size: 2.8rem;

   margin-bottom  :  1.5rem;
}  

.services-cta p {
  font-size: 1.2rem;
	    margin-bottom: 2.5rem;
	    opacity  :  0.95;
}

.services-cta-button {
   display:        inline-block;
    padding :       1.2rem 2.8rem;
   background: white;
     color: #667eea;
   text-decoration: none;
    border-radius: 6px;
   font-weight: 600;
	font-size    :      1.1rem;
    transition: all 0.3s;
}

.services-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.cta-note {
  margin-top: 1.5rem;
   font-size: 0.95rem;
    opacity :     0.85;
}

.thankyou-hero {
    margin-top: 90px;
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.thankyou-container {
  margin :   0 auto;
    align-items: center;
   grid-template-columns     :  1.3fr 1fr;
    display: grid;
  gap: 4rem;
   max-width: 1320px;
	
}

.thankyou-content {
    text-align: center;


}

.success-checkmark {
	margin-bottom: 2rem;
}

.success-icon   {
  width: 96px;
    height: 96px;
  stroke: #27ae60;
  fill: none;
  stroke-width: 2;
   animation: scaleIn 0.5s ease-out; 

}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
   font-size:2.8rem;
  color: #1a252f;
   margin-bottom: 1.5rem;
}

.thankyou-message {
   font-size: 1.2rem;
   color: #5a6c7d;
  margin-bottom: 3rem;
	 line-height: 1.7;
}

.next-steps   {
    background: white;
    padding:      2.5rem;
   border-radius: 12px;
   margin-bottom: 3rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
     }


.next-steps h2 {
      font-size: 2rem;
    color: #1a252f;
   margin-bottom: 2rem;


}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.step-box {
  text-align: center;
	padding  :      1.5rem;
}

.step-count {
  display: inline-block;
   width: 48px;
    height: 48px;
  background: #3498db;
   color: white;
    border-radius     :     50%;
    line-height     :       48px;
  font-size    :        1.5rem;
   font-weight: 700;
    margin-bottom: 1rem;

}

.step-box h3 {

	  font-size: 1.2rem;
    color     :    #1a252f;
  margin-bottom: 0.8rem;
     }

.step-box p {
	    color: #5a6c7d;
  font-size: 0.95rem;
      line-height: 1.6;


}

.thankyou-info-block {
			 background: #f8f9fb;
   padding: 2rem;
   -webkit-border-radius   :    10px;
   border-radius: 10px;
   margin-bottom: 2.5rem;
	}

.thankyou-info-block h3  {


  font-size: 1.5rem;
   color :   #1a252f;
   margin-bottom: 1rem;}

.thankyou-info-block p {
   color: #5a6c7d;
    line-height: 1.7;
}

.thankyou-actions {
  display: flex;
  gap: 1.5rem;
	justify-content: center;
    margin-bottom: 3rem;
}

.thankyou-btn {
  padding: 1rem 2rem;
  text-decoration: none;
    border-radius: 6px;
  font-weight: 600;
 transition: all 0.3s;
}

.thankyou-btn.primary {
    background: #3498db;
    color   :        white;
}

.thankyou-btn.primary:hover {
   background: #2980b9;
  transform: translateY(-2px);
}

.thankyou-btn.secondary {
  background: white;
    color: #3498db;
  border   :  2px solid #3498db;
}

.thankyou-btn.secondary:hover {
    background: #3498db;
   color:   white;
}

.contact-reminder {
           background :white;
   padding     :     2rem;
  border-radius     :  10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	}

.contact-reminder h4 {
    font-size: 1.3rem;
  color     :    #1a252f;
  margin-bottom: 1.2rem;
}

.contact-detail {

   display: flex;
  align-items: center;
    justify-content: center;
		gap: 1rem;
  color: #5a6c7d;
   margin-bottom: 0.8rem;




}

.contact-mini-icon {
	width:24px;
   height: 24px;
  stroke: #3498db;
  fill: none;
	stroke-width   :      2;
}

.thankyou-visual img {
  width: 100%;
	 border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.additional-resources {
  padding: 5rem 2rem;
   background   :     white;
}

.resources-wrapper {

	    margin: 0 auto;
    max-width: 1220px;
	
}

.resources-wrapper h2 {
   font-size: 2.5rem;
  text-align:  center;
    color: #1a252f;
  margin-bottom: 1rem;
}

.resources-intro
	{
  text-align    :     center;
  font-size: 1.15rem;
  color: #5a6c7d;
  margin-bottom   :  3rem;
}

.resource-cards {
      display     :    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.resource-card {
    background: #f8f9fb;
 border-radius: 10px;
    padding: 2.5rem;
  text-align: center;
  transition: transform 0.3s;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-icon {
   width: 56px;
  height: 56px;
    margin: 0 auto 1.5rem;
  stroke: #3498db;
   fill: none;
    stroke-width: 2;
}

.resource-card h3 {
   font-size: 1.5rem;
   color: #1a252f;
  margin-bottom: 1rem;

}

.resource-card p {
    color: #5a6c7d;
   line-height: 1.7;
}@media (max-width: 968px) {
    .services-hero h1 {
        font-size: 2.4rem;
    }
    
    .service-detailed-grid {
        grid-template-columns: 1fr;
    }
    
    .process-container,
    .thankyou-container {
        grid-template-columns: 1fr;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .methodology-grid,
    .additional-grid,
    .resource-cards {
        grid-template-columns: 1fr;
    }
}