* {
   margin: 0;
   padding: 0;
        box-sizing: border-box;
}

body {

	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3436;
	background: #ffffff;
	}

.page-wrapper {
   overflow-x: hidden;
  width: 100%;
}

.top-nav {
  position  :      fixed;
    top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
 z-index: 1000;
   transition: all 0.3s ease;
}

.top-nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}



.nav-inner {
    max-width: 1320px;
   margin: 0 auto;
    padding: 1rem 2rem;
	display: flex;
    justify-content: space-between;
  align-items: center;


}

.brand-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
    display: flex;
  list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
   position: relative;
        font-weight: 500;
   color: #2d3436;
   transition :       color 0.3s;
   font-size: 1rem;
  text-decoration: none;
}

.nav-links a:hover {
   	color: #6c5ce7;
}

.nav-links a::after {

	  content: '';
  position: absolute;
   bottom: -5px;
  left: 0;
    width: 0;
    height: 2px;
    background: #6c5ce7;
    transition: width 0.3s ease;
	}

.nav-links a:hover::after {
   width: 100%;
}

.nav-toggle {
     display     :       none;

	    flex-direction: column;

	   background: none;

	  border: none;

	    cursor   :        pointer;

	   padding: 0.5rem;
}

.nav-toggle .bar    {
  width    :   25px;

	    height: 3px;

	  background   :  #2d3436;

	          margin: 3px 0;

	  transition: 0.3s; 

}

.hero-section {
       margin-top: 80px;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #f8f9ff 0%, #e8ecff 100%);
}

.hero-content-wrapper {
   max-width: 1320px;
   margin: 0 auto;
    display   :grid;
  grid-template-columns: 1fr 1fr;
   gap   :    4rem;
   align-items: center;
}

.text-block h1 {
   font-size: 3rem;
   color: #2d3436;
   margin-bottom: 1.5rem;
  line-height: 1.2;
   font-weight: 700;
}

.lead-paragraph {
  font-size   :1.2rem;
   color: #636e72;
        margin-bottom: 2rem;
   line-height :      1.7;
}

.cta-buttons {
	 display: flex;
    gap: 1rem;
}

.primary-btn {
  display: inline-block;
  padding : 1rem 2.5rem;
  background: #6c5ce7;
  color: #fff;
  text-decoration: none;
   border-radius: 8px;
      font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);


}

.primary-btn:hover {
    background: #5f4dd1;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.4);
}

.hero-visual img{
    width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.intro-segment {
   padding: 5rem 2rem;
    background: #ffffff;
}

.content-container {
  max-width: 1320px;
  margin: 0 auto;
	
}

.intro-segment h2 {
  font-size: 2.5rem;
       color: #2d3436;
  margin-bottom :        1.5rem;
   text-align: center;
}

.intro-segment > .content-container > p
	{
    font-size: 1.1rem;
   color: #636e72;
    text-align: center;
    max-width  :        800px;
  margin:       0 auto 3rem;
   line-height: 1.8;
}

.features-grid    {
      display:      grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
    margin-top   :      3rem;


}


.feature-box  
  {
	background: #f8f9ff;
  transition: transform 0.3s ease;
  border-radius: 10px;
   padding: 2rem;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.feature-box h3 {
   font-size: 1.5rem;
  color: #2d3436;
   margin-bottom: 1rem;
}

.feature-box p {
    color: #636e72;
    line-height:       1.7;
}

.services-overview {

	   padding: 5rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);


}

.services-overview h2 {
   font-size: 2.5rem;
    color: #2d3436;
    text-align: center;
  margin-bottom: 3rem;
}

.service-cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                    gap: 2.5rem;
}

.service-card {
   background: #ffffff;
   border-radius  :       12px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-card img {
   width: 100%;
  height: 250px;
   object-fit: cover;


}

.card-text {
 padding: 2rem;
}

.card-text h3 {
	    font-size: 1.5rem;
    color: #2d3436;
  margin-bottom: 1rem;

}

.card-text p {
    color: #636e72;
   line-height: 1.7;
}

.cta-banner {
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #6c5ce7 0%, #5f4dd1 100%);
   text-align: center;
}

.cta-inner {
   max-width: 900px;
  margin: 0 auto;
}

.cta-banner h2 {
    font-size: 2.5rem;
   color: #ffffff;
    margin-bottom: 1.5rem;
}

.cta-banner p {
     font-size: 1.2rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
   line-height :       1.7;
}

.cta-action-btn {
  display :     inline-block;
  padding: 1.2rem 3rem;
   background: #ffffff;
  color: #6c5ce7;
	text-decoration: none;
     border-radius: 8px;
  font-weight  :  600;
	font-size: 1.1rem;
        transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.cta-action-btn:hover


{
  transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.process-section {
    padding: 5rem 2rem;

  background: #ffffff;
}

.process-section h2 {
  font-size: 2.5rem;
   color: #2d3436;
   text-align: center;
   margin-bottom: 3rem;
}

.steps-wrapper {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step-item	{
  padding: 2rem;
   background: #f8f9ff;
    border-radius: 10px;
   position: relative;
}

.step-number {
   font-size: 3rem;
    font-weight: 700;
  color: #e8ecff;
    margin-bottom: 1rem;
}

.step-item h3 {
   font-size: 1.4rem;
  color: #2d3436;
    margin-bottom: 1rem;
}

.step-item p {
	    color: #636e72;
     line-height: 1.7;


	}

.testimonial-area {
   padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.testimonial-area h2 {
        color: #2d3436;
   text-align: center;
  font-size: 2.5rem;
    margin-bottom    :   3rem;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
                    gap: 2.5rem;}

.testimonial-block {
    padding: 2.5rem;
                    background: #ffffff;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   border-left: 4px solid #6c5ce7;
}

.testimonial-block p {
   line-height    :       1.8;
   margin-bottom: 1.5rem;
    color: #636e72;
  font-style: italic;
	font-size: 1.1rem;
}

.testimonial-block footer {
      color: #2d3436;
    font-weight: 600;}

.contact-section {
   padding:       5rem 2rem;
	 background: #ffffff;

}

.contact-layout {
   display: grid;
	 grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items:        start;
}

.contact-info h2


{
   font-size: 2.5rem;
   color : #2d3436;
  margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #636e72;
    line-height: 1.7;
  margin-bottom: 2rem;
}

.info-blocks
{
   display: flex;
   flex-direction: column;
    gap: 1.5rem;
}

.info-item strong {
	   display: block;
   margin-bottom: 0.5rem;
    font-size: 1.1rem;
   color    :      #2d3436;}



.info-item p {
   color: #636e72;
   margin: 0;
}

.contact-form-wrapper	{
   background: #f8f9ff;
   padding :        2.5rem;
  border-radius: 12px;
}

.contact-form		{
  display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.form-group  {
   display: flex;
   flex-direction: column;
}

.form-group label  {
   margin-bottom  :     0.5rem;
   color: #2d3436;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e8ecff;
   border-radius:       6px;
  font-size: 1rem;
   font-family: inherit;
    transition: border-color 0.3s;
  background: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color   :      #6c5ce7;
   outline :    none;
}  

.submit-btn {
    border-radius: 8px;
    font-weight: 600;
  cursor: pointer;
   padding: 1rem 2rem;
   font-size: 1.1rem;
    color: #ffffff;
   border: none;
  background    :#6c5ce7;
  transition: all 0.3s ease;
}

.submit-btn:hover	{
    background   :      #5f4dd1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.site-footer {
    background  :#1a1a2e;
    color: #ffffff;
   padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width   : 1320px;
	 margin: 0 auto;
}

.footer-columns    {
        display :   grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
  margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-logo img {
    height: 45px;
	 width: auto;
	margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}


.footer-col p


{
     color: rgba(255,255,255,0.8);
    line-height :1.7;
        margin-bottom: 0.5rem;

     }

.footer-links {
  list-style: none; 

}

.footer-links li  {
    margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
	color    :       #6c5ce7;
}

.footer-bottom {
    text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p   {
  color: rgba(255,255,255,0.7);
}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 1.5rem;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .text-block h1 {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .text-block h1 {
        font-size: 1.7rem;
    }
    
    .lead-paragraph {
        font-size: 1rem;
    }
    
    .cta-banner h2 {
        font-size: 1.8rem;
    }
}.policySection {

	   background: #f8f9fa;
   padding : 80px 2rem;
}  

.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;
    }
}.about-hero-banner {
 margin-top: 80px;

    padding: 6rem 2rem;

  background: linear-gradient(135deg, #6c5ce7 0%, #5f4dd1 100%);

  text-align :        center;

  color: #ffffff;


}

.about-hero-content h1 {
    font-size   :     3.5rem;
					margin-bottom: 1rem;
 font-weight: 700; 
	
}

.hero-subtitle {
  font-size: 1.4rem;
  color: rgba(255,255,255,0.95);
}

.story-section {
  padding: 5rem 2rem;
  background:  #ffffff;
}

.story-layout {
  grid-template-columns     :  1fr 1.2fr;
    display: grid;
   gap: 4rem;
    align-items: center;
}

.story-image img {
               width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.story-text h2 {
	font-size: 2.5rem;
  color: #2d3436;
   margin-bottom    :       1.5rem;
}

.story-text p {

	   font-size     :       1.1rem;
   color: #636e72;
   line-height: 1.8;
 margin-bottom: 1.5rem;
	}

.mission-vision-block {
   padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);

}

.mv-grid 
 {
  display: grid;
	  grid-template-columns: repeat(2, 1fr);
	    gap :  3rem;
}

.mv-item {

	        padding: 3rem; 
		background: #ffffff; 
	                    border-radius: 12px; 
	  box-shadow: 0 5px 25px rgba(0,0,0,0.08);}

.mv-item h2  
  {
      font-size: 2rem;

	   color: #2d3436;

	    margin-bottom    : 1.5rem;
}

.mv-item p {
  font-size: 1.1rem;
                       color: #636e72;
     line-height: 1.8;
}

.values-segment {
   padding: 5rem 2rem;
   background: #ffffff;
}

.values-segment h2 {
  font-size: 2.5rem;
    color: #2d3436;
  text-align: center;
  margin-bottom: 3rem;
}

.values-display {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
	
}

.value-card {
    padding: 2.5rem;
  background  :        #f8f9ff;
   border-radius: 10px;
    border-left:   4px solid #6c5ce7;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateX(10px);
}

.value-card h3 {
    font-size   : 1.5rem;
  color:      #2d3436;
    margin-bottom: 1rem;
}

.value-card p {
   color: #636e72;
   line-height: 1.7;
}

.approach-explanation 
 {
   padding: 5rem 2rem; 
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

.approach-flex {
  display: grid;

	   grid-template-columns: 1fr 1.3fr;

	  gap: 4rem;

	    align-items: center;
}

.approach-visual img {
 width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.approach-description h2 {
  font-size   :  2.5rem;
    color: #2d3436;
  margin-bottom: 1.5rem;
}

.approach-description p  
  {
   font-size: 1.1rem;
  color    : #636e72;
   line-height : 1.8;
         margin-bottom: 1.5rem;
}



.expertise-area {


               padding: 5rem 2rem;
    background: #ffffff;

}

.expertise-area h2 {
   font-size: 2.5rem;
   color: #2d3436;
    text-align: center;
  margin-bottom: 1.5rem;
}

.expertise-intro {
   font-size: 1.1rem;
    color: #636e72;
    text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
   line-height: 1.8;
}

.expertise-highlights {
	 display: grid; 
	  grid-template-columns: repeat(3, 1fr); 
	  gap: 2rem;
}

.highlight-box {
  text-align :center;
                    padding    :      3rem 2rem;
  background: linear-gradient(135deg, #6c5ce7 0%, #5f4dd1 100%);
  border-radius    : 12px;
                    color: #ffffff;
}

.highlight-box strong {
   display: block;
   font-size: 3rem;
  font-weight: 700;
   margin-bottom: 1rem;
}

.highlight-box span {
	font-size: 1.1rem;
}

.why-choose-section {
   padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%); 

}

.why-choose-section h2 {


    font-size: 2.5rem;
  color: #2d3436;
    text-align: center;
   margin-bottom: 3rem;
     }

.reasons-wrapper {
    display  :       grid;
  grid-template-columns: repeat(2, 1fr);
	 gap: 2.5rem;
}

.reason-element {
  padding:      2rem;
   background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.reason-element h3 {
   font-size: 1.5rem;
  color: #2d3436;
      margin-bottom  : 1rem;
}

.reason-element p {
  color: #636e72;
    line-height: 1.7;
}

.location-info {
   padding: 5rem 2rem;
    background: #ffffff;
}

.location-grid {
               display: grid;
  grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-text h2	{
    font-size: 2.5rem;
   color: #2d3436;
  margin-bottom: 1.5rem;
}

.location-text > p
{
     font-size: 1.1rem;
    color  :     #636e72;
        line-height: 1.8;
  margin-bottom    :  2rem;
     }

.address-block {
  padding: 2rem;
	background: #f8f9ff;
					border-radius: 10px;
}

.address-block p {
    color: #636e72;
    margin-bottom: 1rem;
}

.address-block strong {
    color: #2d3436;
  font-size: 1.1rem;
  display     :       block;
    margin-bottom: 0.5rem; 

}

.location-visual img {
   width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.cta-closing {
	 padding: 5rem 2rem;
  background: linear-gradient(135deg, #6c5ce7 0%, #5f4dd1 100%);
    text-align: center;
}

.cta-content {
    max-width: 900px;
   margin   :     0 auto;
}

.cta-closing h2 {
   margin-bottom: 1.5rem;
      color: #ffffff;
  font-size: 2.5rem;
}

.cta-closing p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.95);
   margin-bottom: 2rem;
}

.cta-link-button	{
     display: inline-block;
    padding: 1.2rem 3rem;
  background :   #ffffff;
    color: #6c5ce7;
    text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
    font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
     }

.cta-link-button:hover		{
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.thankyou-main {
  margin-top: 80px;
    padding: 5rem 2rem;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
  min-height: calc(100vh - 80px);
}

.thankyou-container    {
   max-width: 1320px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap :4rem;
   align-items  :     center;
}

.thankyou-content {

  text-align: left;
	}

.success-icon-wrapper {
   margin-bottom: 2rem;
}

.success-checkmark {
   display: inline-block; 
	    animation: checkmarkAppear 0.6s ease; 
	
}@keyframes checkmarkAppear {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
  font-size     :   3rem;
    color: #2d3436;
    margin-bottom: 1.5rem;
}

.main-message {
  font-size: 1.2rem;
  color: #636e72;
	line-height: 1.8;
    margin-bottom  :   2rem;
}

.info-box
	{
   padding: 2rem;
  background: #ffffff;
    border-radius: 10px;
   margin-bottom: 2rem;
    border-left: 4px solid #6c5ce7;
}

.info-box h2 {
  font-size: 1.8rem;
    color: #2d3436;
    margin-bottom: 1rem;
}

.info-box p {
    color: #636e72;
  line-height: 1.7;
}

.next-steps {
	    margin-bottom: 2.5rem;}

.next-steps h3 {
    font-size: 1.5rem;
               color: #2d3436;
  margin-bottom: 1rem;
}

.steps-list
	{
   list-style: none;
    padding-left: 0;
}


.steps-list li {
    padding: 0.8rem 0 0.8rem 2rem;
   color: #636e72;
	position: relative;
  line-height: 1.6;
}

.steps-list li::before {
   color: #6c5ce7;
   position: absolute;
  left: 0;
  content: '→';
    font-weight: bold;
}

.action-buttons {
   display: flex;
     gap  :     1rem;
          margin-bottom: 2.5rem;
}

.btn-primary {
     display: inline-block;
   padding: 1rem 2rem;
	 background: #6c5ce7;
   color: #ffffff;
    text-decoration: none;
  border-radius: 8px;
    font-weight   :     600;
	transition: all 0.3s ease;
     }

.btn-primary:hover {
   background: #5f4dd1;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

.btn-secondary {
    display: inline-block;
   padding: 1rem 2rem;
   background: transparent;
			color: #6c5ce7;
  text-decoration: none;
    border-radius: 8px;
    border: 2px solid #6c5ce7;
   font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
   background: #6c5ce7;
    color: #ffffff;
  transform: translateY(-2px);
}

.contact-reminder {
	   padding: 1.5rem;
    background: #f8f9ff;
  border-radius: 8px;
    text-align: center;
	}

.contact-reminder p {
  color: #636e72;
   margin-bottom: 0.5rem;
}

.contact-reminder a {
	color: #6c5ce7;
  text-decoration: none;
    font-weight: 600;
}

.contact-reminder a:hover {
  text-decoration    :      underline;
}

.thankyou-visual img {
    width: 100%;
    height: auto;
  border-radius    :        12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .values-display {
        grid-template-columns: 1fr;
    }
    
    .approach-flex {
        grid-template-columns: 1fr;
    }
    
    .expertise-highlights {
        grid-template-columns: 1fr;
    }
    
    .reasons-wrapper {
        grid-template-columns: 1fr;
    }
    
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
    }
}