* {

   margin: 0;
  padding: 0;
       box-sizing: border-box;

}

html {
  scroll-behavior: smooth;


}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height: 1.6;
   color: #2c3e50;
  background-color: #ffffff;


}

.container-narrow  {
    max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
}

header	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	        padding: 15px 0;

	    position: sticky;

		top: 0;

	    z-index: 1000;

	  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display    :        flex;

     justify-content: space-between;

       align-items    :   center;

    max-width :     1200px;

  margin: 0 auto;

   padding  :    0 20px;
}

.logo-section {
	 display: flex;
    align-items: center;
  text-decoration   :       none;
   color: white;
  font-size: 22px;
  font-weight: 700;
      letter-spacing: -0.5px;
}

.logo-section img {
    height: 40px;

  width  :  auto;

   margin-right: 12px;

  filter: brightness(0) invert(1);
}

nav {
         display: flex;
   gap: 35px;
    align-items: center;
}

nav a {
   color: white;
   text-decoration: none;
        font-weight: 500;
   font-size:       15px;
  transition: opacity 0.3s ease;
    letter-spacing: 0.3px;


}

nav a:hover {
  opacity:       0.8;
}

.nav-toggle
{
               display: none;
    background: none;
  border: none;
  color: white;
	font-size: 24px;
	cursor: pointer;
   flex-direction: column;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content  :       center;
}

.nav-toggle span {
   display: block;
   width: 100%;
   height: 2.5px;
   background: white;
     border-radius: 2px;
    transition: all 0.3s ease;
}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        padding: 20px;
        display: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    nav.active {
        display: flex;
    }

    nav a {
        padding: 15px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 100px 20px;
 text-align: center;
}

.hero-content {
    max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-weight: 800;
  letter-spacing :    -1px;
	 font-size: 56px;
    margin-bottom: 20px;
  line-height: 1.2;
}


.hero p {
	font-size: 18px;
	  margin-bottom: 40px;
	  opacity: 0.95;
	   line-height: 1.8;


}

.cta-primary {
	 display: inline-block;
  background: white;
    color: #667eea;
    padding  :        16px 40px;
  border-radius: 8px;
	text-decoration    :none;
	font-weight: 600;
	 font-size: 16px;
  transition:     all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
   cursor: pointer;
    border: none;
	letter-spacing: 0.5px;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); 
	
}

section {
  padding: 80px 20px;}

h2
{
	font-size :     42px;
   font-weight: 800;
       margin-bottom: 15px;
  color: #2c3e50;
    letter-spacing: -0.5px;


}

.section-subtitle
	{
        font-size: 18px;
    color: #7f8c8d;
   margin-bottom: 50px;
    max-width: 600px;
  line-height: 1.7;
}

.offerings-grid {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 35px;
    margin-bottom: 50px;
	}

.offering-card {
    background   :    #f8f9fa;
  padding: 40px 30px;
	 border-radius: 12px;
  border-left: 4px solid #667eea;
   transition :all 0.3s ease;
  cursor: pointer;
}

.offering-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
    border-left-color: #764ba2;
}

.offering-card h3 {
  font-size: 22px;
  font-weight: 700;
   margin-bottom: 15px;
         color     :      #2c3e50;
}

.offering-card p     {
  color: #7f8c8d;
    line-height: 1.7;
   font-size: 15px;
}

.benefits-section {
  background: #f0f4ff;
     border-radius: 12px;
    padding    :   60px 40px;
}

.benefits-list {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
    margin-top: 40px;
	
     }

.benefit-item {
    display: flex;
    gap: 20px;
}

.benefit-item-icon {
    flex-shrink     :      0;
   width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 8px;
   display: flex;
   align-items     :      center;
    justify-content : center;
   color :white;
  font-weight: 700;
    font-size: 24px;
}

.benefit-item-content h4 {
    font-size: 18px;
    font-weight: 700;
  margin-bottom: 8px;
  color: #2c3e50;
}

.benefit-item-content p {
  color :    #7f8c8d;
         font-size  :        14px;
    line-height: 1.6;
}

.showcase-images {
      display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
  margin-top: 50px;
}

.showcase-item {
   border-radius: 12px; 
	    overflow :hidden; 
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); 
	    transition: all 0.3s ease;
}

.showcase-item:hover {
  transform: scale(1.03);
     box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}



.showcase-item img   {
 width:    100%;
	  object-fit  :      cover;
	         height: 280px;
	    display: block;
}

.cta-section


{
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	text-align :center;
    border-radius     : 12px;
  padding: 70px 40px;
   margin: 80px 20px;}

.cta-section h2 {
   color   :     white;

	      margin-bottom: 20px;
}

.cta-section p

{
    font-size    :   18px;
   margin-bottom:     40px;
	opacity :       0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
   line-height: 1.8;


     }

#contact {
   background: #f8f9fa;
}

.contact-form {
  max-width: 600px;
  margin: 50px auto 0;
    background: white;
   padding: 45px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.form-group   {
   margin-bottom: 25px;
}

.form-group label {
  display: block;
   margin-bottom: 10px;
  font-weight: 600;
  color: #2c3e50;
  font-size: 14px;
  letter-spacing: 0.3px;
}  

.form-group input,
.form-group select,
.form-group textarea {
	 width: 100%;
  padding: 14px 16px;
    border:        2px solid #e1e8ed;
   border-radius: 8px;
  font-family: inherit;
    font-size: 15px;
   transition: all 0.3s ease;
	color: #2c3e50;
} 

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
       outline: none; 
	border-color     :        #667eea; 
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);

}

.form-group textarea {
   resize    :      vertical;
   min-height: 120px;
}

.form-submit {

   width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  border: none;
	 border-radius: 8px;
  font-weight:        600;
         font-size: 16px;
  cursor: pointer;
   transition: all 0.3s ease;
  letter-spacing: 0.5px;


}

.form-submit:hover   {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
	
}

footer 
 {
       background :      #1a1a2e; 
  color: #ecf0f1; 
 padding  :        50px 20px 30px;
	}

.footer-content {
	 max-width: 1200px;
	margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
    margin-bottom: 40px;
}



.footer-section h3 {
	    font-size: 16px;
  font-weight: 700;
   margin-bottom: 20px;
    text-transform: uppercase;
  letter-spacing: 1px;
    color :    white; 
	


}

.footer-section p 
 {


   font-size: 14px;
   line-height: 1.8;
   color: #bdc3c7;
   margin-bottom: 12px;
     }


.footer-section a {
   color: #bdc3c7;
  text-decoration: none;
     font-size: 14px;
  line-height :  1.8;
    transition   :  color 0.3s ease;
}

.footer-section a:hover {
    color: #667eea;
}

.footer-logo {
  display   : flex;
	align-items: center;
				 gap: 10px;
          margin-bottom: 20px;
}

.footer-logo img  
  {
		height: 35px;
   width: auto;
  filter: brightness(0) invert(1);


}

.footer-divider {
 border-top: 1px solid #2d3561;
  margin-top: 40px;
    padding-top: 30px;
  text-align: center;
     color  :        #95a5a6;
                    font-size: 13px;
}

.footer-divider p {
    margin: 0;

}@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    h2 {
        font-size: 32px;
    }

    section {
        padding: 50px 20px;
    }

    .cta-section {
        margin: 50px 20px;
        padding: 40px 25px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .benefits-section {
        padding: 40px 20px;
    }
}.btn {
  display: inline-block;
    padding: 14px 32px;
    font-size:      15px;
   font-weight: 600;
   text-decoration   :none;
    border-radius     :6px;
   border   :       none;
   cursor: pointer;
   transition: all 0.3s ease;
  letter-spacing: 0.4px;
    text-align: center;
    min-width: 140px;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :      white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);


}

.btn-secondary    {
        background: white;
    color: #667eea;
  border: 2px solid #667eea;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}  

.btn-secondary:hover {


   background: #f0f4ff;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.25);


}

.btn-outline {
 background    :  transparent;
   color     :#667eea;
   border: 2px solid #667eea;

}



.btn-outline:hover {
  background :#667eea;
	color    :white;
}

.btn-small {
    padding     : 10px 24px;
    font-size: 13px;
   min-width: auto;
}

.btn-large {

   min-width: 160px;
   font-size: 16px;
    padding: 18px 40px;


}

.btn-block		{
    width     :        100%;

	    display: block;
}

.btn-disabled {
    opacity: 0.5;
  cursor: not-allowed;
   pointer-events: none;
}

.btn-group	{
    display   :     flex;
  gap: 12px;
   flex-wrap: wrap;
}

.btn-icon	{
          display    :       inline-flex;
    align-items: center;
   justify-content: center;
   gap: 8px;


}@media (max-width: 600px) {
    .btn {
        padding: 12px 24px;
        font-size: 14px;
        min-width: auto;
    }

    .btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }

    .btn-block {
        width: 100%;
    }

    .btn-group {
        flex-direction: column;
    }

    .btn-group .btn {
        width: 100%;
    }
}.policySection    {
   padding: 80px 2rem;
    background: #f8f9fa;
}

.policyContainer {
    max-width: 800px;
		 margin :       0 auto;
          text-align: left;
}

.policyContainer h1 {
   margin-bottom: 2rem;
   font-weight :     800;
   font-size: 3rem;
    letter-spacing: -0.5px;
                    color: #2c3e50;
}

.policyContainer h2{
  font-size: 2.5rem;

	   color: #2c3e50;

	   margin: 2.5rem 0 1.5rem;

	   font-weight: 700;


}

.policyContainer h3 {
    font-size: 1.8rem;
	 color: #2c3e50;
	 margin: 2rem 0 1rem;
  font-weight: 600;
}

.policyContainer p {
    color   :    #7f8c8d;
   margin-bottom: 1.5rem;
    line-height: 1.7;
   font-size: 1.1rem;
	}

.policyContainer ul  
  {
	margin:  1rem 0 1.5rem 2rem;
					color: #7f8c8d;
}

.policyContainer li {

 margin-bottom: 0.5rem;
  font-size: 1.1rem;
	line-height: 1.6;
	}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.5rem;
    }

    .policyContainer p,
    .policyContainer li {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
        padding: 80px 20px;
    text-align: center;
}

.services-hero .hero-content {
  max-width: 800px;
	 margin: 0 auto;
}  

.services-hero h1 {
  font-size: 48px;
     font-weight  :       800;
  margin-bottom: 20px;
         line-height: 1.2;
  letter-spacing: -1px;
}

.services-hero p {


  font-size :        18px;
  opacity :0.95;
  line-height   :     1.8;
}


.services-main {
        padding: 80px 20px; 

}

.services-cards-detailed {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
	margin-top: 50px;


}

.service-detailed-card {
    background: white;
	 border: 2px solid #e1e8ed;
	border-radius: 12px;
   overflow: hidden;
    transition: all 0.3s ease;
}

.service-detailed-card:hover {
   border-color : #667eea;
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
  transform: translateY(-4px);
}

.service-card-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 30px 25px;
   position: relative;
	
}

.service-card-header h3 {
   font-size: 22px;
    font-weight   :        700;
  margin: 0;
  padding-right: 120px;
   line-height: 1.4;
}

.service-badge {
    position: absolute;
    top: 20px;
   right: 20px;
  background: rgba(255, 255, 255, 0.25);
 color: white;
    padding  :      6px 14px;
    border-radius: 20px;
  font-size  :  12px;
    font-weight: 600;
  text-transform: uppercase;
   letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.service-card-content {
  padding: 30px 25px;
}

.service-card-content p {
               color: #7f8c8d;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px;
}



.service-card-content h4 {
   font-size   :     16px;
  font-weight: 700;
   color: #2c3e50;
  margin: 25px 0 15px 0;
}

.service-features {
  list-style: none;
   padding: 0;
      margin-bottom: 25px;
}

.service-features li {
	   padding: 10px 0;
    color: #555;
  font-size: 14px;
  line-height: 1.6;
   border-bottom: 1px solid #f0f0f0;
    padding-left: 25px;
   position: relative;}

.service-features li:before {
  content: '→';
  position: absolute;
   left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-duration,
.service-investment {
   background: #f8f9fa;
    padding  :    12px 15px;
	 border-radius: 6px;
    font-size: 14px;
   margin :   12px 0;
     border-left: 3px solid #667eea;
}

.comparison-section	{
    background     :       #f8f9fa;
    padding: 80px 20px;
}

.comparison-table-wrapper {
  overflow-x: auto;
  margin-top: 50px;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%; 
    border-collapse: collapse; 
  background: white;
}



.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  color  :    white;
}

.comparison-table th {
  padding: 20px 15px; 
	text-align: left; 
 font-weight: 700; 
  font-size: 14px; 
   letter-spacing: 0.3px; 

}

.comparison-table td {
   padding: 18px 15px;
   border-bottom: 1px solid #e1e8ed;
	 font-size   :       14px;
    color: #555;
}

.comparison-table tbody tr:hover {
    background    :     #f8f9fa;
}

.comparison-table .check-mark {
   color    :    #2ecc71;
  font-weight: 700;
   font-size: 16px;
}

.process-section {
   padding: 80px 20px;
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 30px;
   margin-top: 50px;
}

.process-step {
   text-align:  center;
               padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
                    position: relative;
}

.process-step:hover {
  transform: translateY(-8px);
	  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
		background   :        white;
}


.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: 24px;
  font-weight    : 700;
  margin: 0 auto 20px; 

}

.process-step h3 {
	font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
   margin-bottom: 12px; 

}

.process-step p {
         color: #7f8c8d;
   font-size: 14px;
  line-height: 1.7;
}

.testimonials-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

		 padding:   80px 20px;

	    color: white;
}

.testimonials-section h2 {


  color: white;

}

.testimonials-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap : 35px;
         margin-top: 50px;
	}

.testimonial-card {


  background: rgba(255, 255, 255, 0.1);
     padding: 35px;
   border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
    transition: all 0.3s ease;}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.testimonial-text {
     font-size: 15px;
	 line-height: 1.8;
    font-style:  italic;
	 margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.95);}

.testimonial-author {
     font-size: 14px;
  color: rgba(255, 255, 255, 0.8);}

.cta-services-section {
	  background: #f8f9fa;
   padding    :70px 40px;
    text-align: center;
   border-radius: 12px;
	 margin: 80px 20px;
	
     }

.cta-services-section h2 {
	margin-bottom: 20px;
}

.cta-services-section p {
   font-size: 18px;
         color: #7f8c8d;
  margin-bottom: 40px;
    max-width: 600px;
   margin-left: auto;
   margin-right: auto;
  line-height: 1.8;
	
}

.thankyou-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    color: white;
	  padding   :80px 20px;
	  text-align: center;
	    min-height: 60vh;
	  display: flex;
	  align-items: center;
	    justify-content   :     center;
}

.thankyou-container	{
 max-width: 700px;
  margin: 0 auto;
}



.thankyou-icon-wrapper {
	margin-bottom    :  30px;
}

.thankyou-icon {
  width: 100px;
    height: 100px;
  background: rgba(255, 255, 255, 0.2);
	border: 3px solid white;
  border-radius: 50%;
    display: flex;
    align-items: center;
   justify-content: center;
    font-size: 50px;
   font-weight: 700;
  margin: 0 auto;
     animation : scaleIn 0.5s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
   font-size: 48px;
    font-weight: 800;
    margin-bottom  :   20px;
   letter-spacing: -1px;

}



.thankyou-subtitle {
    font-size: 16px;
  opacity: 0.95;
    line-height     :      1.8;
   margin-bottom: 40px;
}


.thankyou-info-box {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
         border-radius: 12px;
    padding: 35px;
  backdrop-filter: blur(10px);
  margin-bottom: 40px;
    text-align: left;}

.thankyou-info-box h3 {
                    font-size :      20px;
  font-weight: 700;
	margin-bottom:     20px;
   text-align: center;


}  

.thankyou-info-list {
	list-style: none;
    padding    :   0;
}

.thankyou-info-list li {
   padding :  12px 0;
  font-size    :        15px;
   line-height: 1.6;
   padding-left: 25px;
    position: relative;
}

.thankyou-info-list li:before


{
  content: '✓';
   position: absolute;
    left: 0;
  font-weight: 700;
}

.thankyou-actions {


   display: flex;
    gap: 20px;
     justify-content: center;
   margin: 40px 0;
                    flex-wrap     :    wrap;}

.cta-secondary {
   display: inline-block;
  background: rgba(255, 255, 255, 0.2);
	 color: white;
    padding: 16px 40px;
    border-radius: 8px;
   text-decoration :        none;
      font-weight: 600;
   font-size: 16px;
	 transition: all 0.3s ease;
	border: 2px solid white;
   letter-spacing: 0.5px;
	cursor : pointer;
	
}

.cta-secondary:hover {
	  background: white;
     -ms-transform: translateY(-2px);
     color: #667eea;
     transform: translateY(-2px);

}

.thankyou-contact-info {
  background: rgba(255, 255, 255, 0.1);
          border-radius: 8px;
   padding: 25px;
	margin-top   :  30px;
}

.thankyou-contact-info h3
{
  font-size :       18px;
  font-weight     :       700;
    margin-bottom: 12px;
}

.thankyou-contact-info p {
	 font-size: 15px;
         line-height: 1.7;
    opacity: 0.95;}

.next-steps-section {
	padding: 80px 20px;
}

.resources-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
} 

.resource-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	padding: 40px 30px;
	 border-radius: 12px;
   transition: all 0.3s ease;}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.25);
}

.resource-card h3 {
	font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.resource-card p {
  font-size: 15px;
	 line-height: 1.8;
	opacity: 0.95;
     margin-bottom: 25px;
}

.read-more {
    display: inline-block;
   color: white;
   text-decoration: none;
   font-weight: 600;
   font-size: 14px;
                    border-bottom: 2px solid white;
  transition: all 0.3s ease;
    padding-bottom: 2px;
	
}

.read-more:hover {


  border-bottom-color: transparent;
  padding-bottom: 6px; 
	
     }@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 36px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .service-card-header h3 {
        font-size: 19px;
        padding-right: 0;
    }

    .service-badge {
        position: static;
        display: inline-block;
        margin-top: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 12px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-section {
        min-height: auto;
        padding: 60px 20px;
    }

    .thankyou-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }

    .thankyou-section h1 {
        font-size: 36px;
    }

    .thankyou-actions {
        flex-direction: column;
        gap: 15px;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        display: block;
    }

    .cta-services-section {
        margin: 50px 20px;
        padding: 40px 25px;
    }
}