* {
	 margin: 0;
   padding: 0;
	box-sizing: border-box; 
	
}

body
	{
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
				 line-height: 1.6;
    color: #2c3e50;
               background   :      #ffffff;}

svg {
  fill: none;
	stroke: #667eea;
   stroke-linejoin: round;
                    width: 100%;
  stroke-linecap: round;
   stroke-width: 2;
   height: 100%;
} 

.main-navigation {
	   background: #ffffff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position   : sticky;
   top: 0;
   z-index   :        1000;
  padding: 18px 0;
	}  

.nav-wrapper	{
  max-width  : 1240px;
  margin: 0 auto;
    padding: 0 32px;
  display: flex;
   justify-content: space-between;
 align-items  :  center;
}

.brand-section .logo-link {
                       display: block;}

.site-logo {
   height: 52px; 
	    width:    auto;
}

.nav-links {
  display   :flex;
   gap  : 42px;
    align-items: center;
}

.nav-item
{
    text-decoration  :    none;
	color: #34495e;
         font-size: 16px;
    font-weight: 500;
	transition: color 0.3s ease;
   position  :  relative;
}

.nav-item:hover {
	   color  :       #667eea;

}

.nav-item::after {
  content: '';
    position   :  absolute;
   bottom: -5px;
   left: 0;
  width: 0;
   height: 2px;
    background: #667eea;
   transition: width 0.3s ease;
}

.nav-item:hover::after {
   width: 100%;
}

.burger-toggle {
	display: none;
   flex-direction: column;
    background  :       transparent;
   border: none;
   cursor :  pointer;
    padding: 8px;
}

.burger-line {
	width: 28px;
   height    :    3px;
	background: #34495e;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-block {
   padding: 85px 0 95px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}



.hero-content-wrapper {
               max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
	gap: 58px;
  align-items: center;
}

.hero-text-zone     {
    padding-right: 22px; 
	
}

.main-headline {
   font-size:   52px;
    font-weight: 700;
         color: #1a202c;
    margin-bottom: 26px;
    line-height: 1.2;
}

.hero-description	{
    font-size: 19px;
    color: #4a5568;
   margin-bottom: 38px;
   line-height: 1.7;
}

.hero-actions {
  display: flex;
   gap:     20px;
}

.primary-action-btn {
  background: #667eea;
    color: white;
  padding: 16px 34px;
   text-decoration: none;
   border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
}

.primary-action-btn:hover {
  background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.secondary-action-btn     {
  background: transparent;
  color: #667eea;
    padding: 16px 34px;
  text-decoration: none;
    border: 2px solid #667eea;
  border-radius:       6px;
    font-weight: 600;
    transition     :   all 0.3s ease;
    display: inline-block;
}

.secondary-action-btn:hover
	{
    background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.hero-visual-zone {
	   position: relative;
	

}

.hero-image {
   width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.methodology-segment {
   padding   :      95px 0; 
		background: white;
}

.content-container {
        max-width: 1240px;
   margin: 0 auto;
    padding: 0 32px;
}

.section-heading {
    font-size   :   42px;
   font-weight: 700;
       color: #1a202c;
  margin-bottom: 22px;
   text-align: center;
}

.section-heading.centered {
	  text-align: center;
	}

.intro-text {
   font-size: 19px;
  color: #4a5568;
    text-align: center;
   max-width: 720px;
   margin: 0 auto 58px;
   line-height: 1.7;
}

.features-grid	{
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 42px;
    margin-top: 52px;
}

.feature-card {
   padding: 38px;
   background: #f8f9fa;
	border-radius   : 10px;
   transition: all 0.3s ease;
}

.feature-card:hover {


  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);}

.icon-holder {
   width :      68px;
   height: 68px;
  margin-bottom: 24px;
	}

.feature-title {
    font-size: 22px;
    font-weight: 600;
	color :      #2c3e50;
 margin-bottom: 16px;
}

.feature-text 
 {

	    font-size: 16px;
 color: #5a6c7d;
   line-height: 1.6;
     }

.service-highlight-area {
  padding: 95px 0;
  background :      #f8f9fa;
}

.dual-column-layout {
	 max-width: 1240px;
   margin: 0 auto;
    padding: 0 32px;
  display     :      grid;
   grid-template-columns   :  1fr 1fr;
   gap: 62px;
   align-items : center;
}

.image-column {
   position  :      relative;
}



.showcase-img {
	width : 100%;
  height :      auto;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.text-column {
         padding-left: 24px;
}

.column-title {
    font-size: 38px;
    font-weight: 700;
  color: #1a202c;
  margin-bottom: 26px;
       line-height: 1.3; 
	
}

.column-paragraph {
 font-size: 17px;
    color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.7;
}

.text-link-cta
{
       display: inline-block;
    color: #667eea;
   font-weight: 600;
	text-decoration :      none;
	 margin-top: 12px;
    transition: all 0.3s ease;
}

.text-link-cta:hover


{
          color   : #5568d3;
  text-decoration: underline;
}

.transformation-showcase  {
 padding: 95px 0;
  background: white;
}

.process-timeline {
          max-width: 900px;
  margin: 52px auto 0;
}  

.timeline-item {
    display: flex;
   gap: 28px;
    margin-bottom: 48px;
   position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
       left    :   16px;
  top: 52px;
   width: 2px;
  height: calc(100% + 28px);
  background :        #e2e8f0;
}

.timeline-marker {
   flex-shrink: 0;
    width: 52px;
    height: 52px;
  background: white;
    border: 3px solid #667eea;
	border-radius: 50%;
  display     :    flex;
  align-items: center;
   justify-content   :  center;
    z-index: 1;
  padding: 8px; 
	
}

.timeline-content		{
   flex: 1;
  padding-top    :    4px;
}

.timeline-heading {
	color: #2c3e50;
         margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
}

.timeline-text   {
  font-size :   16px;
   color: #5a6c7d;
  line-height: 1.6;
}

.cta-block {
    padding: 95px 0;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   	text-align: center;
}

.cta-content-box


{


   padding: 0 32px;
  margin: 0 auto;
    max-width: 820px;


}

.cta-headline {


   font-size: 44px;
          font-weight: 700;
      color: white;
      margin-bottom: 22px;
	}

.cta-subtext {
   font-size :        20px;
  color: rgba(255,255,255,0.95);
  margin-bottom: 38px;
	line-height: 1.6;
	
}

.cta-button-large {
  background: white;
    color: #667eea;
       padding: 18px 42px;
        text-decoration: none;
	 border-radius: 6px;
      font-weight: 700;
    font-size: 18px;
  display: inline-block;
   transition: all 0.3s ease;


}

.cta-button-large:hover {
	  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);}

.expertise-display {

  background     :       white;
    padding: 95px 0;


}

.expertise-grid {
    display:    grid;
  gap: 38px;
   margin-top: 52px;
  grid-template-columns: repeat(3, 1fr);}

.expertise-item {
        background  :    white;
          border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
       transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-6px); 
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.expertise-visual {
  width: 100%;
    object-fit: cover;
     height    :240px;
}

.expertise-label {
  font-size: 22px;
    font-weight: 600;
 color:  #2c3e50;
         padding: 24px 24px 12px;
}

.expertise-description {
       padding: 0 24px 28px;
  color: #5a6c7d;
   line-height: 1.6;
    font-size: 16px;
     }


.contact-section   {
    padding: 95px 0;
  background: #f8f9fa;
}  

.contact-layout{
    display: grid;
  grid-template-columns: 1fr 1.2fr;
	gap: 58px;
}

.contact-main-title {
   font-size: 42px;
  font-weight: 700;
   color: #1a202c;
   margin-bottom: 22px; 

}

.contact-intro-text {
  font-size: 17px;
   color: #4a5568;
   margin-bottom: 42px;
   line-height: 1.7; 
	
}

.info-blocks {


    display: flex;
      flex-direction: column;
                  gap: 32px;
	}

.info-block-item {
  display: flex;
   gap: 20px;
					align-items: flex-start;
}

.info-icon {

	  width: 48px;
    height: 48px;
   flex-shrink: 0;
	background: #667eea;
    border-radius: 8px;
  display :       flex;
   align-items: center;
   justify-content  :   center;
  padding: 10px;
	}



.info-icon svg {
    stroke: white; 
	
}

.info-details {
    flex: 1;
	
}

.info-label {
	font-size: 18px;
  font-weight: 600;
  color     :   #2c3e50;
  margin-bottom: 8px;
}

.info-value
{
   font-size: 16px;
  color: #5a6c7d;
         line-height :        1.6;}

.inquiry-form {
  background: white;
  padding  :       42px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-group {


  margin-bottom: 24px;


}

.form-label {
	     display: block; 
  font-size: 15px; 
          font-weight:    600; 
    color: #2c3e50; 
          margin-bottom: 8px;

}

.form-input,
.form-select,
.form-textarea
{
    width: 100%;
  padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
	 font-size: 16px;
       font-family  :    inherit;
         transition: border-color 0.3s ease;
    color     :        #2c3e50;
    background: white;
}



.form-input:focus,
.form-select:focus,
.form-textarea:focus {
   outline: none;
    border-color: #667eea;
}

.form-textarea {
   resize: vertical;
      min-height: 120px;
}

.form-submit-btn {
    background: #667eea;
       color: white;
  padding: 16px 38px;
   border: none;
                    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
   cursor: pointer;
	transition: all 0.3s ease;
  width: 100%;
}

.form-submit-btn:hover {
	background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.site-footer {
   background: #1a202c;
   color: #cbd5e0;
   padding: 72px 0 32px;
}

.footer-container {
   max-width: 1240px;
   margin: 0 auto;
    padding: 0 32px; 
	
}

.footer-grid     {
   display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
    margin-bottom: 48px;
}

.footer-logo{

	  height: 46px;
  width: auto;
    margin-bottom: 18px;
  filter: brightness(0) invert(1); 
	
}

.footer-about {
    font-size: 15px;
  line-height: 1.6;
  color: #a0aec0;
}



.footer-heading {
  font-size: 18px;
  font-weight: 600;
    color    :       white;
          margin-bottom: 18px;
}

.footer-links,
.footer-contact {
    list-style: none;
}

.footer-links li,
.footer-contact li {


	margin-bottom :        12px;

}

.footer-links a {
    color: #cbd5e0;
  text-decoration: none;
                    -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
   -o-transition: color 0.3s ease;
   transition: color 0.3s ease;
   font-size: 15px;
}

.footer-links a:hover {
  color    :      #667eea;
}

.footer-contact li	{
    color: #cbd5e0;
         font-size: 15px;
}

.footer-bottom {
  padding-top: 32px;
       border-top: 1px solid #2d3748;
  text-align  :   center;
}

.copyright-text {
   font-size: 14px;
    color:        #a0aec0;
} @media (max-width: 1024px) {
    .hero-content-wrapper,
    .dual-column-layout {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .features-grid,
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 88px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 32px 0;
        gap: 24px;
    }

    .nav-links.active {
        left: 0;
    }

    .main-headline {
        font-size: 38px;
    }

    .section-heading {
        font-size: 32px;
    }

    .features-grid,
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .text-column {
        padding-left: 0;
    }

    .inquiry-form {
        padding: 28px;
    }
}.policySection {
  padding   :     80px 2rem;
   background: #f8f9fa;
}

.policyContainer {
	max-width: 800px;
     margin  :    0 auto;
       text-align    :       left;

}

.policyContainer h2 {
   font-size: 2.5rem;
    color :        #2c3e50;
   margin-bottom: 1.5rem;
          font-weight  :    700;
}

.policyContainer p {
  color: #7f8c8d;
         margin-bottom: 1.5rem;
    line-height: 1.7;
  font-size     :1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.page-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding  :     92px 0;
  text-align: center;
     }

.banner-content-wrap {
  padding     :    0 32px;
   max-width: 1240px;
  margin: 0 auto;
}

.banner-title {
    font-size: 48px;
	 font-weight    : 700;
    color    :white;
	margin-bottom: 18px;
}

.banner-subtitle {
	font-size: 21px;
  color: rgba(255,255,255,0.92);
}

.services-overview {
  padding:    88px 0;
  background: white;
}

.intro-block {
   text-align: center;
    max-width: 820px;
       margin   : 0 auto 58px;
}

.overview-heading {


    font-size: 40px;
   font-weight: 700;
  color: #1a202c;
  margin-bottom:  20px;

}

.overview-text {
	 font-size: 18px;
    color: #4a5568;
  line-height: 1.7;
}

.service-cards-grid {
  display   :grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 38px;
   margin-top   : 52px;

}

.service-card-item {
  transition: all 0.3s ease;
			position: relative;
  padding: 42px;
    background: #f8f9fa;
    border-radius: 12px;
      border: 2px solid transparent;
}

.service-card-item:hover    {
  transform: translateY(-6px); 
  box-shadow: 0 16px 38px rgba(0,0,0,0.12); 
  border-color     :  #667eea;
}

.featured-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color :       white;
}

.featured-card .card-heading,
.featured-card .card-description,
.featured-card .card-features-list {


  color: white;}

.featured-card .card-features-list li {

  color: rgba(255,255,255,0.95);
}  

.featured-badge {

	  position: absolute;
  top: 22px;
                    right  :    22px;
  background: rgba(255,255,255,0.25);
  color: white;
   padding: 6px 16px;
   border-radius: 20px;
    font-size    :     13px;
  font-weight:       600;}

.card-icon-box {
    width :      72px;
   height: 72px;
  margin-bottom: 24px;
}

.featured-card .card-icon-box svg{
  stroke: white;
}

.card-heading {
  font-size: 26px;
    font-weight: 600;
   color  :  #2c3e50;
    margin-bottom: 16px;
}

.card-description {
  font-size: 16px;
      color: #5a6c7d;
  line-height:    1.7;
    margin-bottom: 24px;
}

.card-features-list {
  list-style: none;
  margin-bottom: 28px;
}

.card-features-list li {
	   padding   :   10px 0;
   color: #4a5568;
  font-size     :       15px;
    position    :       relative;
  padding-left: 28px;
}

.card-features-list li::before {
  content: "•";
               position: absolute;
    left: 0;
	color: #667eea;
   font-size: 20px;
    font-weight: bold;
}


.featured-card .card-features-list li::before {
        color: white;
}  

.card-action-zone {
  margin-top: auto;

}

.card-cta-link {
	display:   inline-block;
  color: #667eea;
   font-weight: 600;
    text-decoration: none;
          padding: 12px 28px;
    border  :        2px solid #667eea;
          border-radius: 6px;
    transition: all 0.3s ease;
}



.card-cta-link:hover {
  color: white;
  background: #667eea;
  transform: translateX(4px);
}

.featured-card .card-cta-link {

    background: white;
   color: #667eea;
	 border-color: white;
     }

.featured-card .card-cta-link:hover {
  background: rgba(255,255,255,0.15);
   color     :     white;
	border-color: white;
}

.methodology-detail {
       padding: 88px 0;
  background: #f8f9fa;
}

.methodology-columns {
					gap: 58px;
    align-items: center;
   margin-top     :48px;
    grid-template-columns: 1fr 1fr;
   display    :   grid;
}

.method-img	{
  width: 100%;
    height: auto;
    border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.method-title {
   font-size: 32px;
  font-weight  :   700;
	color: #1a202c;
   margin-bottom:      22px;
}

.method-paragraph {

   font-size  : 17px;
   color: #4a5568;
    line-height: 1.7;
    margin-bottom: 18px;
     }

.method-highlights {
    margin-top: 32px;

	                    display: flex;

	          flex-direction: column;

	   gap   :  16px;

}

.highlight-item 
 {
    align-items: center;
  gap: 14px;
	 display: flex;
}

.highlight-icon {
  width: 42px;
  height: 42px;
    -webkit-border-radius: 50%;
          background :    #667eea;
   border-radius :50%;
   display: flex;
   align-items:      center;
   justify-content: center;
  flex-shrink: 0;
    padding: 8px; 
	
}

.highlight-icon svg {
   stroke: white;
	
}

.highlight-text		{
    font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
}



.benefits-section {
	    padding: 88px 0;
   background: white;
}

.benefits-layout {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 32px;
   margin-top: 52px;

}

.benefit-box {
       padding: 32px;

	   transition: all 0.3s ease;

	    background: #f8f9fa;

	   border-radius: 10px;

	    position: relative;
	}

.benefit-box:hover {
	  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);

}

.benefit-number
{


    font-size: 42px;
          font-weight :700;
   color: #667eea;
  opacity: 0.3;
    margin-bottom: 16px;

}

.benefit-title {
  font-size: 20px;
    font-weight   :600;
   color: #2c3e50;
    margin-bottom: 14px;
}

.benefit-text {
  font-size   :15px;
       color: #5a6c7d;
	 line-height: 1.6;
}

.process-detail-area {
   padding: 88px 0;
  background     :     #f8f9fa;
}

.process-steps-wrapper {
   	margin-top :52px; 
	
}

.step-item {
	    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 52px;
   align-items: center;
    margin-bottom: 68px;}  

.step-item.reverse-layout {


    direction  :        rtl;
	}

.step-item.reverse-layout > * {
  direction  :        ltr; 
	
}

.step-visual-side {
    position     :    relative;
}  

.step-number-badge {
   position:  absolute;
    top  :     -18px;
   left: -18px;
  width   : 58px;
	 height:   58px;
    background: #667eea;
   color: white;
	border-radius: 50%;
   display: flex;
    align-items: center;
  justify-content:   center;
   font-size :24px;
   font-weight: 700;
  box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4);
  z-index: 1;
}

.step-image {
    width: 100%;
  height: auto;
  border-radius :       10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.step-heading {
    font-size: 28px;
	font-weight: 600;
    color  :     #2c3e50;
    margin-bottom: 18px;
}

.step-text {
  font-size: 17px;
   color: #4a5568;
  line-height     :    1.7;
}

.final-cta-section {
       padding: 88px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	 text-align: center;
}

.final-cta-wrapper {
     margin: 0 auto;
    max-width: 780px;
  padding:   0 32px;
}

.final-cta-title {
   font-size    : 42px;
  font-weight: 700;
    color: white;
	margin-bottom: 22px;
}

.final-cta-description {
	font-size: 19px;
  color: rgba(255,255,255,0.9);
	margin-bottom: 38px;
  line-height: 1.6;
}

.final-cta-button {
   background: #667eea;
    color: white;
    padding: 18px 42px;
   text-decoration: none;
  border-radius: 6px;
    font-weight: 700;
  font-size: 18px;
    display: inline-block;
	transition: all 0.3s ease;
}

.final-cta-button:hover {
  background:        #5568d3;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.thankyou-container {
   min-height: 70vh; 
          display: flex; 
          align-items: center; 
    justify-content: center; 
  padding: 82px 32px; 
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.thankyou-content-box {
   max-width: 720px; 
   background: white; 
   padding: 58px 48px; 
   border-radius: 12px; 
  box-shadow: 0 12px 38px rgba(0,0,0,0.12); 
   text-align: center;
}

.success-icon-wrapper {
	width: 112px;
    height    :112px;
   margin   :0 auto 32px;
  background: #e8f5e9;
  border-radius: 50%;
	display: flex;
   align-items: center;
   justify-content: center;
     padding    :        24px;
}

.success-icon-wrapper svg {
    stroke: #4caf50;


}

.thankyou-headline {
    font-size: 38px;
    font-weight :   700;
      color: #1a202c;
    margin-bottom:    22px;
}

.thankyou-message{
    font-size: 18px; 
	    color:        #4a5568; 
	   line-height: 1.7; 
	   margin-bottom: 42px;
	}

.next-steps-block {
               text-align    :   left;
     padding   :   38px;
    margin-bottom: 38px;
  background: #f8f9fa;
    border-radius: 10px; 
	
}

.nextsteps-title {
   font-size: 24px;
   font-weight: 600;
    color: #2c3e50;
	 margin-bottom: 28px;
	text-align: center;
}

.steps-list {
         display: flex;
   flex-direction: column;
   gap: 24px;
}

.step-row

{
	display: flex;
  gap    : 20px;
   align-items: flex-start;
}

.step-icon
{
    width :        48px;
    height     :   48px;
   background: #667eea;
    border-radius: 8px;
      display: flex;
  align-items: center;
    justify-content: center;
    flex-shrink: 0;
  padding: 10px;
}

.step-icon svg {
    stroke     :    white;
}

.step-info {
    flex: 1;
}

.step-info-title {
  font-size: 17px;
   font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;

}

.step-info-text  
  {
    font-size: 15px;
  color: #5a6c7d;
    line-height: 1.6;

} 

.thankyou-actions {

	    display     :        flex;
    gap   :     18px;
    margin-bottom: 38px;
  justify-content: center;}

.action-btn {

	    padding: 14px 32px;
    text-decoration: none;
  border-radius: 6px;
	 font-weight: 600;
   transition: all 0.3s ease;
  display: inline-block;
	}

.primary-btn   {
    background: #667eea;
      color: white;
}

.primary-btn:hover
{
	background     : #5568d3;
  transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;
   color  : #667eea;
  border: 2px solid #667eea;
}



.secondary-btn:hover {
  background: #667eea;
  color: white;
}

.contact-info-box {
         padding-top: 32px;
       border-top: 1px solid #e2e8f0;
}

.contact-info-text {
   font-size: 16px;
  color: #5a6c7d;
   margin-bottom    :       12px;
}

.contact-phone-number {
    color: #667eea;
  font-weight: 700;
    font-size :        22px;


}@media (max-width: 1024px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }

    .methodology-columns,
    .step-item {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .step-item.reverse-layout {
        direction: ltr;
    }

    .benefits-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 36px;
    }

    .overview-heading {
        font-size: 32px;
    }

    .service-card-item {
        padding: 32px;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .thankyou-content-box {
        padding: 42px 28px;
    }

    .thankyou-headline {
        font-size: 28px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
        text-align: center;
    }
}