* {
    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 {
   background   :    #fff; 
  box-shadow: 0 2px 8px rgba(0,0,0,0.08); 
  position: sticky; 
  top: 0; 
    z-index: 1000; 
    padding   :       1.2rem 0;
}

.nav-wrapper {
   max-width: 1280px;
  margin: 0 auto;
               padding: 0 2.5rem;
   display: flex;
   justify-content: space-between;
  align-items: center;
}

.brand-section {
	display    :flex; 
    align-items: center;
}

.brand-logo {
    height: 52px;
   width: auto;
}

.mobile-toggle {
   display: none;
  background: none;
    border: none;
   cursor: pointer;
  padding: 8px;
}

.menu-icon {
  stroke     :#2c3e50;
   fill   :     none;
  stroke-width: 2.5;
  stroke-linecap: round;
   stroke-linejoin: round;
}

.nav-links {
   display: flex;
		gap: 2.8rem;
	   align-items: center;
}

.nav-links a {
    text-decoration: none;
   color: #34495e;
    font-weight: 500;
    font-size: 16px;
   transition: color 0.25s ease;
               position: relative;
}

.nav-links a:hover {
   color: #667eea;
}

.nav-links a::after	{
  content: '';
    position: absolute;
 bottom: -6px;
  left: 0;
       width :      0;
  height   :    2.5px;
                    background: #667eea;
	 transition     :     width 0.3s ease;
}

.nav-links a:hover::after {
    width  :  100%; 

}

.content-area {
	min-height: 100vh;
}

.hero-section {
    padding: 5rem 2.5rem 4rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-container {
  max-width: 1280px;
   margin: 0 auto;
    display: grid;
        grid-template-columns: 1fr 1fr;
    gap  :       4rem;
  align-items: center;


}

.hero-text h1 {
  color     :    #1a202c;

	    font-weight: 700;

	         margin-bottom: 1.5rem;

	 line-height: 1.2;

	  font-size: 3.2rem;
}

.hero-description {
	 font-size: 1.15rem;
    color: #4a5568;
   margin-bottom :        2.5rem;
	 line-height: 1.8;
}

.hero-actions {
    display    :flex;
  gap: 1.5rem;
}

.primary-btn {
  background  :        #667eea;
   color: #fff;
    padding     :     1rem 2.2rem;
    text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
 font-size   :     1.05rem;
	 transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102,126,234,0.3);
}

.hero-visual img {
     width  :      100%;
  height   :      auto;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
	}

.challenges-section {
   padding: 5rem 2.5rem; 
	   background: #fff;
}

.section-container {
   max-width:  1280px;
      margin: 0 auto;
}

.challenges-section h2 {
   color: #1a202c;
    margin-bottom: 3.5rem;
    font-size     :  2.6rem;
  text-align: center;

}

.challenges-grid {

	  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap:    2.5rem;


}

.challenge-card {
    background: #f8f9fa;
   -moz-border-radius: 10px;
                    padding: 2.5rem;
  -webkit-border-radius: 10px;
    border-radius: 10px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.challenge-icon
	{
  stroke: url(#iconGradient1);
   fill: none;
   stroke-width: 2;
   stroke-linecap: round;
 stroke-linejoin: round;
   margin-bottom  :      1.5rem;
}

.challenge-card h3 {
  font-size: 1.4rem;
	   margin-bottom: 1rem;
	    color: #2d3748;
}

.challenge-card p
{
  color: #4a5568;
   line-height: 1.7;
}

.approach-section  {
   padding: 5rem 2.5rem;
  background: linear-gradient(to bottom, #ffffff 0%, #f7fafc 100%);
}

.approach-container  {
    max-width: 1280px;
  margin: 0 auto;
	display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
      align-items: center;
}

.approach-content h2 {
   font-size: 2.6rem;
   margin-bottom: 1.5rem;
          color: #1a202c;
}

.approach-intro {
  margin-bottom: 3rem;
   color: #4a5568;
               line-height: 1.8;
  font-size: 1.1rem;
}

.methodology-steps {


  display: flex;
	    flex-direction:    column;
	 gap: 2rem;}

.method-step {

          display:        flex;
  gap :      1.5rem;
          align-items: flex-start;
     }

.step-number {
	font-size: 2rem;
   font-weight: 700;
    color: #667eea;
   min-width: 60px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
	color: #2d3748;
} 

.step-content p {

	   color: #4a5568;
   line-height: 1.7;
	}

.approach-image img {
   width: 100%;
  border-radius:12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.programs-section {
    padding:5rem 2.5rem;
   background : #fff;
}

.programs-wrapper {
               max-width   :      1280px;
        margin: 0 auto;
}

.programs-wrapper h2 {
  font-size: 2.6rem;
 text-align: center;
  margin-bottom: 4rem;
  color: #1a202c;
	
}

.programs-layout {
                    display: flex;
  flex-direction: column;
  gap: 3rem;
}

.program-item {
  display: grid;
	  grid-template-columns: 1fr 1.5fr;
	   gap: 3rem;
	   align-items    :    center;
	    background: #f8f9fa;
	  border-radius  :        12px;
	    overflow: hidden;
	   transition: box-shadow 0.3s ease;
}

.program-item:hover {
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.program-visual img {

    width: 100%;
   height: 100%;
   object-fit: cover;
	
}



.program-details {
   padding: 2.5rem 3rem 2.5rem 0;
}

.program-details h3 {
  margin-bottom  :  1rem;
   font-size: 1.8rem;
  color: #2d3748;
	}

.program-details > p {
  color: #4a5568;
   margin-bottom: 1.5rem;
  line-height: 1.7;
}  

.program-features {

   list-style: none; 
    padding: 0;
     }

.program-features li 
 {
    padding: 0.6rem 0;
    color: #4a5568;
   position: relative;
    padding-left: 1.8rem;
}

.program-features li::before {
  content: '✓';
		position: absolute;
	  left   :        0;
	   color: #667eea;
	        font-weight: 700;
}

.transformation-cta


{

	padding: 5rem 2.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align:center;
	}

.cta-content {
   max-width    :   800px;
    margin: 0 auto;
}

.cta-content h2		{
  font-size: 2.8rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.95);
   margin-bottom: 2.5rem;
	line-height: 1.8;
}

.cta-button	{

	   background: #fff;
    color: #667eea;
	 padding: 1.1rem 2.5rem;
   text-decoration   :  none;
         border-radius: 8px;
               font-weight: 600;
    font-size: 1.1rem;
  display   :  inline-block;
  transition: all 0.3s ease;}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2); 

}

.benefits-overview {
   padding: 5rem 2.5rem;

	  background   :   #fff;
}

.benefits-container  
  {


  margin: 0 auto;
  max-width: 1280px;
     }

.benefits-container h2 {
	font-size: 2.6rem;
  text-align :     center;
	margin-bottom: 4rem;
  color: #1a202c;
}

.benefits-grid	{

    display: grid;
     grid-template-columns: repeat(2, 1fr);
   	gap: 3rem;


     }

.benefit-box {
    background: #f8f9fa;
  padding  :  2.5rem;
  border-radius: 10px;
    transition     :   transform 0.3s ease;
}

.benefit-box:hover {
  transform: translateY(-5px);
}

.benefit-svg {
	    stroke: #667eea;
	fill  :      none;
  stroke-width :    2;
         stroke-linecap: round;
  stroke-linejoin: round;
  margin-bottom: 1.5rem;}



.benefit-box h4 {
   font-size: 1.4rem; 
	 margin-bottom: 0.8rem; 
	color: #2d3748;
}

.benefit-box p

{
        color: #4a5568;
  line-height: 1.7;
}

.contact-section {
  padding: 5rem 2.5rem; 
	  background: linear-gradient(to bottom, #f7fafc 0%, #edf2f7 100%);
}

.contact-wrapper {
    max-width: 1280px;
    margin: 0 auto;
       display: grid;
    grid-template-columns: 1fr 1.5fr;
   gap: 4rem;


}

.contact-info h2 {

  font-size: 2.6rem;
    margin-bottom: 1.5rem;
   color: #1a202c;}

.contact-description  
  {
    font-size: 1.1rem;
  color     :    #4a5568;
  margin-bottom  :      3rem;
        line-height: 1.8;
}  

.info-details {
   gap: 2rem;
   display: flex;
               flex-direction: column;
}

.info-item {
	    display  :    flex;

    gap  :    1.2rem;

                    align-items: flex-start;}

.info-item svg 
 {
    stroke: #667eea;
	 fill  :none;
    stroke-width   :   2;
    stroke-linecap   :        round;
    stroke-linejoin: round;
       flex-shrink   :        0;
}

.info-item strong {
  color : #2d3748;
    margin-bottom:        0.4rem;
   font-size: 1.1rem;
   display: block;
}

.info-item p {
    color: #4a5568;
   line-height: 1.6;
}  

.contact-form {
  background: #fff;
	padding  :      3rem;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.form-row {
  margin-bottom: 1.8rem; 

}

.input-group label {
    display: block;
  font-weight: 600;
 color: #2d3748;
    margin-bottom: 0.6rem;
  font-size: 0.95rem;
}



.input-group input,
.input-group select,
.input-group textarea		{
  width: 100%;
 border: 2px solid #e2e8f0;
   transition     :       border-color 0.2s ease;
    font-family: inherit;
  padding: 0.9rem 1.2rem;
    font-size: 1rem;
  border-radius  :   8px;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
	outline: none;
    border-color: #667eea; 
	
}

.input-group textarea {
    resize: vertical;
  min-height: 120px;
}

.submit-btn     {
               background: #667eea;
    color: #fff;
    padding: 1.1rem 2.5rem;
  border: none;
    border-radius: 8px;
   font-weight     :  600;
                    font-size: 1.05rem;
    cursor:        pointer;
    transition: all 0.3s ease;
    width   :        100%;
}  

.submit-btn:hover		{
  background  :     #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102,126,234,0.3);
} 

.site-footer {
					background: #1a202c;
  color: #fff;
    padding: 4rem 2.5rem 2rem;
}

.footer-content {
   max-width: 1280px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
   margin-bottom: 3rem;
}

.footer-column h4 {
	 font-size: 1.2rem;
   margin-bottom: 1.2rem;
  color: #fff;
	
}

.footer-logo {


  height: 48px;
   width: auto;
    margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
	}

.footer-tagline {
   color: #cbd5e0;
  line-height: 1.6;
}

.footer-links {
    list-style   : none;
   padding: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
    transition: color 0.2s ease;
   text-decoration  : none;
    color: #cbd5e0;
}

.footer-links a:hover {
         color: #667eea;
}

.footer-address,
.footer-phone {
    color: #cbd5e0;
         line-height: 1.7;
}

.footer-phone


{
  margin-top: 1rem;
}

.footer-bottom {


               max-width: 1280px;
   margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
   text-align: center;}

.footer-bottom p {
     color: #cbd5e0;
  font-size: 0.95rem;
}@media (max-width: 968px) {
    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1.5rem 2.5rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-links a {
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-links a::after {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .approach-container {
        grid-template-columns: 1fr;
    }

    .program-item {
        grid-template-columns: 1fr;
    }

    .program-visual img {
        height: 300px;
    }

    .program-details {
        padding: 2rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .nav-wrapper {
        padding: 0 1.5rem;
    }

    .hero-section {
        padding: 3rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .challenges-section,
    .approach-section,
    .programs-section,
    .benefits-overview,
    .contact-section {
        padding: 3rem 1.5rem;
    }

    .transformation-cta {
        padding: 3rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }
}.policySection {
    padding:        80px 2rem;
    background: #f8f9fa;
}

.policyContainer   {
  max-width   :    800px;
   margin: 0 auto;
  text-align: left; 

}

.policyContainer h2 {
   margin-bottom: 1.5rem;
        font-weight: 700;
    color: #2c3e50;
   font-size: 2.5rem;
}

.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-main {
    min-height: 100vh;
}

.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5.5rem 2.5rem 4.5rem;
    text-align  :      center;
}

.services-hero-content {
    max-width: 900px;
  margin  :    0 auto;
}

.services-hero h1 {
    font-size: 3.4rem;
    color: #fff;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.services-subtitle {
  font-size: 1.2rem;

  color: rgba(255,255,255,0.95);

  line-height: 1.8;
}

.detailed-services {
   padding: 5rem 2.5rem;
      background: #fff;
}

.services-container {
	max-width: 1320px;
  margin: 0 auto;
   display :        flex;
  flex-direction:column;
   gap: 5rem;
}  

.service-detail-card {
	display: grid;
  grid-template-columns: 1fr 1.5fr;
    gap    :        4rem;
  align-items: flex-start;
} 

.service-detail-card.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.service-detail-card.reverse .service-detail-image {
  order: 2;
}

.service-detail-card.reverse .service-detail-content {
    order: 1;
}

.service-detail-image img {
       width: 100%;
  border-radius   :   12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.service-detail-content {
  padding: 1rem 0;
}

.service-badge	{
    display: inline-block;
    background: #667eea;
   color   :   #fff;
  padding: 0.5rem 1.2rem;
     border-radius: 20px;
          font-size: 0.9rem;
   font-weight: 600;
   margin-bottom: 1.5rem;
}

.service-detail-content h2  {
  font-size     :    2.4rem;
    color   :     #1a202c;
  margin-bottom: 1.2rem;
}

.service-lead {

    font-size: 1.1rem;
	color: #4a5568;
  line-height: 1.8;
	 margin-bottom: 2.5rem;
}

.service-highlights,
.service-ideal-for,
.service-outcomes,
.workshop-topics,
.webinar-schedule		{
	                    margin-bottom: 2.5rem;
	}

.service-highlights h3,
.service-ideal-for h3,
.service-outcomes h3,
.workshop-topics h3,
.webinar-schedule h3 {
   font-size:    1.5rem;
         color: #2d3748;
    margin-bottom  :     1.2rem;
}

.highlights-list {
  list-style: none;
   padding: 0;
}

.highlights-list li {
   padding: 0.7rem 0 0.7rem 2rem;
       color  :   #4a5568;
       position: relative;
      line-height: 1.7;
}

.highlights-list li::before {
  content: '→';
   position: absolute;
   left: 0;
  color: #667eea;
   font-weight: 700;
}

.service-ideal-for p {
          color:   #4a5568;
               line-height: 1.8;
  font-style: italic;
		 background: #f8f9fa;
	padding: 1.5rem;
    border-radius  :        8px; 

}

.outcomes-grid {
   display: grid;
      gap: 1.2rem;
  grid-template-columns: repeat(2, 1fr);
}

.outcome-item {
   align-items: flex-start;
    display: flex;
    gap: 1rem;
}

.outcome-item svg {
   stroke  :#667eea;
  fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
   stroke-linejoin: round;
       flex-shrink: 0;
}

.outcome-item span {
	color: #4a5568; 
	   line-height: 1.6;
}

.topics-list {
                    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.topic {


  background     :        #f8f9fa;
  padding: 1.2rem;
	border-radius: 8px;
   color: #2d3748;
   font-weight     : 500;


}

.schedule-items {
    display: flex;
  flex-direction: column;
   gap   :       1rem;
}

.schedule-item {


   display: flex;
  gap: 1.5rem;
  align-items: center;
   background: #f8f9fa;
    padding: 1.2rem 1.5rem;
    border-radius:8px;}  

.week-number {
   background: #667eea;
    color    :#fff;
  padding: 0.4rem 1rem;
	border-radius: 6px;
   font-weight: 600;
  font-size: 0.9rem;
 white-space: nowrap;
}  

.week-topic {
   color: #2d3748;
    font-weight: 500;
}

.consultation-offer {
  background: linear-gradient(to right, #f7fafc 0%, #edf2f7 100%);
   padding: 4rem 2.5rem;
}

.consultation-content {
    max-width: 1280px;

	  margin: 0 auto;

	  display: flex;

	    justify-content   :      space-between;

	   align-items: center;

		gap   :     3rem;
}

.consultation-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
   color: #1a202c;
}

.consultation-text p {
  font-size: 1.1rem;
    color   :      #4a5568;
	 line-height: 1.7;
} 

.consultation-btn{
   background: #667eea;
 color    :    #fff;
    padding: 1.1rem 2.5rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
    font-size: 1.05rem;
    display: inline-block;
  transition: all 0.3s ease;
   white-space: nowrap;

}

.consultation-btn:hover {
	background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102,126,234,0.3);
}

.comparison-section     {
   padding: 5rem 2.5rem; 
	    background: #fff;
}

.comparison-wrapper {
   max-width: 1280px;
  margin: 0 auto;}

.comparison-wrapper h2 {
	font-size  :      2.6rem;
   text-align: center;
  margin-bottom: 3.5rem;
  color: #1a202c;
}  

.comparison-table-container {
   overflow-x: auto;
}

.comparison-table {
  width: 100%;
    border-collapse: collapse;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border-radius: 10px;
      overflow: hidden;
	

}

.comparison-table thead   {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	
}

.comparison-table th {


    color: #fff;
  padding  :  1.5rem;
               text-align: left;
                    font-weight: 600;
       font-size  : 1.1rem;
}

.comparison-table td {
    padding: 1.3rem 1.5rem;
  border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:hover {

   background: #f8f9fa;}

.feature-name {
   font-weight: 600;
       color  :    #2d3748;
}

.process-section {
  background: linear-gradient(to bottom, #f7fafc 0%, #ffffff 100%);
               padding     :  5rem 2.5rem;
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
}

.process-container h2 {
   font-size: 2.6rem;
   text-align: center;
   margin-bottom: 4rem;
  color: #1a202c;


}

.process-steps {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap     :    3rem;
}

.process-step {
  text-align: center;
      padding: 2rem;
}

.step-icon {
    display: inline-flex; 
      justify-content     :   center; 
   align-items: center; 
	width: 90px; 
   height: 90px; 
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    border-radius: 50%; 
   margin-bottom: 1.5rem;
}

.step-icon svg	{
         stroke: #fff;
  fill: none;
   stroke-width: 2;
    stroke-linecap     :    round;
          stroke-linejoin: round;
}

.process-step h3 {

    font-size: 1.5rem;
	   color: #2d3748;
	  margin-bottom: 1rem;}

.process-step p {
    color    :      #4a5568;
        line-height: 1.7;


}

.additional-services {
     padding: 5rem 2.5rem;
    background:#fff;}

.additional-container {
    max-width: 1280px;
    margin: 0 auto;
}

.additional-container h2 {
       margin-bottom: 4rem;
    text-align: center;
    font-size: 2.6rem;
    color: #1a202c;
}

.additional-grid


{
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.additional-card {


  background: #f8f9fa;
      padding :     2.5rem;
    border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.additional-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
} 

.additional-card h3 {

	   font-size: 1.5rem;
   color: #2d3748;
  margin-bottom: 1rem;}

.additional-card p {
    color: #4a5568;
  line-height: 1.7;
	margin-bottom: 1.5rem;
}

.additional-link {
   color    :       #667eea;
   text-decoration: none;
   font-weight    : 600;
   transition:      color 0.2s ease;
}

.additional-link:hover {
    color: #5568d3;


}

.thankyou-main {
   min-height: 100vh;
  background: linear-gradient(to bottom, #f7fafc 0%, #ffffff 100%);
}

.thankyou-section {


  padding: 5rem 2.5rem;
}

.thankyou-container {
  max-width: 900px;

	   margin: 0 auto;

	     text-align: center;
}

.thankyou-icon {
    display: inline-flex;
   justify-content    :       center;
    align-items: center;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius  :       50%;
  margin-bottom: 2rem;
}

.thankyou-icon svg {
   stroke   : #fff;
   fill    :    none;
  stroke-width  :        2.5;
    stroke-linecap   : round;
    stroke-linejoin :   round;
}

.thankyou-container h1 {
   font-size: 3rem;
   color: #1a202c;
  margin-bottom: 2rem;
}

.thankyou-message
	{
    text-align  :       left;
  margin-bottom  : 3rem;
}

.main-message {

	  font-size: 1.2rem;
    color: #4a5568;
   line-height:       1.8;
   margin-bottom: 3rem;
	}

.next-steps {
	   background: #fff;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    margin-bottom: 2.5rem;
}

.next-steps h2 {
               font-size: 2rem;
  color: #2d3748;
  margin-bottom :2rem;
}

.steps-list {
    display: flex;
  flex-direction  :       column;
                    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start; 
	
}

.step-number {
  width: 50px;
  height: 50px;
    background: #667eea;
   color: #fff;
    border-radius: 50%;
	display :      flex;
   align-items: center;
  justify-content: center;
    font-size: 1.5rem;
   font-weight: 700;
  flex-shrink: 0;
}

.step-text h3 {
  font-size: 1.3rem; 
	  color: #2d3748; 
	   margin-bottom: 0.5rem;
}

.step-text p {
  color: #4a5568;
   	 line-height: 1.7;
}

.confirmation-details {
   background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  border-left: 4px solid #667eea;
}  

.confirmation-details h3 {


         font-size: 1.3rem;

	               margin-bottom: 0.8rem;

	     color: #2d3748;
     }

.confirmation-details p {
   color: #4a5568;
	 line-height: 1.7;
}

.thankyou-actions {
  display    :        flex;
    gap    :  1.5rem;
  justify-content: center;
   margin-bottom :  3rem;
}

.primary-action {
  -webkit-transition: all 0.3s ease;
      -moz-transition: all 0.3s ease;
   background: #667eea;
   color: #fff;
    padding: 1.1rem 2.5rem;
                    -moz-border-radius: 8px;
  text-decoration: none;
   -webkit-border-radius: 8px;
   border-radius: 8px;
   font-weight     :      600;
   font-size: 1.05rem;
  transition: all 0.3s ease;
}

.primary-action:hover {
    background   :  #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102,126,234,0.3);
}

.secondary-action {
  background: #fff;
  color: #667eea;
        padding:1.1rem 2.5rem;
   text-decoration: none;
    border-radius: 8px;
	font-weight     :   600;
	font-size: 1.05rem;
  border: 2px solid #667eea;
    transition: all 0.3s ease;
}

.secondary-action:hover		{
 background: #667eea;

   color: #fff;

  transform: translateY(-2px);


}

.immediate-contact {
    background    :  #fff;
  padding: 2rem;
       border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.contact-label

{


   font-size: 1.1rem;
    color : #4a5568;
  margin-bottom: 1rem;
	
     }

.phone-link {
     font-size: 1.8rem;
   color    : #667eea;
   text-decoration  :     none;
    font-weight: 700;
   transition: color 0.2s ease;}  

.phone-link:hover {
	color: #5568d3;
}

.while-waiting {
    padding: 5rem 2.5rem;
   background: #fff;
}

.waiting-container     {
	 max-width: 1280px;
  margin: 0 auto;
} 

.waiting-container h2 {
   font-size: 2.6rem;
    text-align: center;
	margin-bottom  :1.5rem;
    color: #1a202c;
}

.waiting-intro {
     font-size: 1.15rem;
   color: #4a5568;
  text-align: center;
   margin-bottom: 3.5rem;}  

.preparation-grid {
	display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.preparation-card {
	background     :      #f8f9fa;
  padding: 2.5rem;
	border-radius  :     10px;
    text-align: center;
	transition: transform 0.3s ease;


}

.preparation-card:hover {
  -ms-transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

.preparation-card svg {
   margin-bottom: 1.5rem;
   stroke-width: 2;
    stroke-linecap  :  round;
   stroke-linejoin: round;
  fill: none;
   stroke    :   #667eea;
}

.preparation-card h3    {
      font-size     :        1.4rem;
    color   :        #2d3748;
  margin-bottom: 1rem;
     }


.preparation-card p {
   color    :    #4a5568;
	line-height: 1.7;
}  

.testimonial-preview {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2.5rem;

}

.testimonial-content {
  max-width: 900px;
     margin   :  0 auto;
    text-align: center;
}

.testimonial-content h2 {
   font-size: 2.6rem;
   color: #fff;
  margin-bottom: 3rem;
}

.testimonial-quote {
  background: rgba(255,255,255,0.15);
	padding: 3rem;
    border-radius: 12px;
  backdrop-filter: blur(10px);
}

.testimonial-quote p {
   font-size: 1.25rem;
    color: #fff;
   line-height: 1.8;
  margin-bottom :        2rem;
   font-style     :     italic;
}

.quote-author {
   display: flex;
        flex-direction: column;
    gap: 0.3rem;

}

.quote-author strong {
    color: #fff;
    font-size: 1.1rem;
}

.quote-author span


{
     color: rgba(255,255,255,0.85);
  font-size  :       0.95rem;

}@media (max-width: 968px) {
    .services-hero h1 {
        font-size: 2.4rem;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }

    .service-detail-card.reverse .service-detail-image {
        order: 1;
    }

    .service-detail-card.reverse .service-detail-content {
        order: 2;
    }

    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .topics-list {
        grid-template-columns: 1fr;
    }

    .consultation-content {
        flex-direction: column;
        text-align: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .additional-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .thankyou-container h1 {
        font-size: 2.2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .preparation-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .services-hero {
        padding: 3rem 1.5rem;
    }

    .services-hero h1 {
        font-size: 1.9rem;
    }

    .detailed-services,
    .consultation-offer,
    .comparison-section,
    .process-section,
    .additional-services,
    .thankyou-section,
    .while-waiting,
    .testimonial-preview {
        padding: 3rem 1.5rem;
    }

    .thankyou-icon {
        width: 90px;
        height: 90px;
    }

    .phone-link {
        font-size: 1.4rem;
    }
}