* {
   margin: 0;
   padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
  color: #2c3e50;
  background-color     :  #fafbfc;
   overflow-x: hidden;
}

.navbar-main  
  {
    background     :        #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
               position: sticky;
   top: 0;
  z-index :     999;
}


.navbar-container {
  max-width   :       1200px;
   margin: 0 auto;
    padding: 1rem 2rem;
    display   :       flex;
               justify-content: space-between;
    align-items: center;
}

.nav-logo-section {
   flex: 0 0 auto;
    -webkit-flex: 0 0 auto;
}

.nav-logo {
    height: 45px;
    width: auto;
  filter: brightness(0) invert(1);
  display: block;
}


.nav-menu {
   gap: 2.5rem;
    list-style: none;
   display :flex;
	align-items: center;
}

.nav-item {
   position: relative;
}

.nav-link {
	 text-decoration: none;
     color: #2c3e50;
    font-weight: 500;
  font-size:   1rem;
    transition: color 0.3s ease;
          padding: 0.5rem 0;
}

.nav-link:hover {
	  color: #3498db;
   border-bottom    :   2px solid #3498db;

}

.nav-toggle 
 {
	 display  : none;

	    flex-direction: column;

	    cursor: pointer;

	                    gap: 6px;
}

.hamburger-line {
    width  :   28px;
   height     : 3px;
  background: #2c3e50;
         transition: all 0.3s ease;
         border-radius: 2px;
}

.nav-toggle.active .line-1 {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active .line-2    {
  opacity: 0;
}

.nav-toggle.active .line-3

{
  transform: rotate(-45deg) translate(7px, -8px);
}

.hero-banner {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
  max-width: 1200px;
   margin: 0 auto;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   border-radius: 0;
}

.hero-content h1 {


   font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
    font-weight: 700;}

.hero-subtitle {
  font-size   :     1.2rem;
			margin-bottom  : 2rem;
	opacity: 0.95;
      line-height   :        1.5;
	}

.cta-button{
                    display: inline-block;
    background: #fff;
   color: #667eea;
    padding    :  1rem 2rem;
   border-radius: 8px;
   text-decoration: none;
   font-weight  :    600;
   transition: all 0.3s ease;
   border: 2px solid #fff;
   cursor     :    pointer;
	 font-size: 1.05rem;
}

.cta-button:hover {
	 background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.hero-image-wrapper {
    position: relative;
    overflow  :    hidden;
    border-radius: 12px;
}



.hero-image {
	height: auto;
   object-fit: cover;
   width: 100%;
    display: block;
}

.container-section {
  max-width   :1200px; 
	   margin: 0 auto; 
	  padding: 0 2rem;
}

.services-overview {
   padding: 5rem 2rem;
    background: #fff;
}

.services-overview h2  {
  color    :  #2c3e50;

	   text-align: center;

	    font-size: 2.4rem;

		margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
      font-size    :        1.1rem;
    color: #555;
   margin-bottom: 3rem;
   max-width: 700px;
    margin-left: auto;
   margin-right: auto;
	
}


.services-grid {
    display:   grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}


.service-card {
   background     :      #f9fafb;
          border-radius: 12px;
          overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid #e5e7eb;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
	 border-color: #667eea;}

.service-image {
	      height: 200px;
	 overflow: hidden;
	     background: #e5e7eb;
     }

.service-img  
  {
	 width: 100%;
  height: 100%;
   object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
	 font-size: 1.3rem;
  color: #2c3e50;
}



.service-card p {
  padding: 0 1.5rem 1rem;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-type

{
    display    :       inline-block;
  padding: 0.5rem 1rem;
   margin: 1rem 1.5rem;
    background: #e3f2fd;
  color: #1976d2;
    border-radius   :        20px;
        font-size: 0.8rem;
	 font-weight: 600;
	text-transform: uppercase;
}

.why-courage {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
}

.why-courage h2 {
  text-align:        center;
  font-size: 2.4rem;
   margin-bottom: 3rem;
  color    :   #2c3e50; 
	
}

.benefits-layout {
    display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
   max-width: 1200px;
  margin: 0 auto;
	
}

.benefit-item {
   background :    #fff;
    padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #667eea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease; 

}

.benefit-item:hover {
  transform: translateX(4px);

}

.benefit-item h4 {
  font-size: 1.2rem;
   color:   #2c3e50;
  margin-bottom: 0.8rem;
}

.benefit-item p {
    color     :#666;

	    font-size: 0.95rem;

	   line-height: 1.6;
}  

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   text-align: center;
  padding: 4rem 2rem;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem; 
   margin-bottom: 2rem; 
       opacity: 0.95;
}

.cta-button-large {
   display :        inline-block;
  background    :        #fff;
   color: #667eea;
	padding: 1.1rem 2.5rem;
  border-radius: 8px;
    text-decoration: none;
                    font-weight :600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}  

.cta-button-large:hover


{
    background: #f5f5f5;
  transform: scale(1.05);
}

.contact-block {
  padding: 5rem 2rem;

	background :        #fff;
}

.contact-block h2 {
	    text-align: center;
   font-size:2.4rem;
  margin-bottom: 0.5rem;
  color: #2c3e50;
	}

.contact-intro {
      text-align: center;
  color: #666;
   font-size: 1.05rem;
   margin-bottom     :3rem;
}

.contact-form {
	max-width: 700px;
    gap    :    1.8rem;
   display: grid;
   margin: 0 auto;
}

.form-group {
   display: flex;
    flex-direction :  column;
}

.form-group label {
   font-weight: 600;
  margin-bottom: 0.5rem;
   color: #2c3e50;
    font-size: 1rem;
}


.form-group input,
.form-group select,
.form-group textarea {
       padding: 0.85rem 1rem;

    border: 2px solid #e5e7eb;

   border-radius     :       6px;

         font-size   :    1rem;

   font-family: inherit;

	 transition: border-color 0.3s ease;
	}

.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);
}

.submit-button {
        padding: 1rem 2rem;
    background: #667eea;
  color: white;
    border: none;
  border-radius: 6px;
    -o-transition: all 0.3s ease;
   -moz-border-radius    :      6px;
    -moz-transition:  all 0.3s ease;
    font-size: 1.05rem;
   font-weight: 600;
	cursor: pointer;
  transition :   all 0.3s ease;
	 margin-top: 0.5rem;
}

.submit-button:hover {
	   background: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

.submit-button:active {
  transform: translateY(0);
}

.footer-main {
       padding: 3rem 2rem 1rem;
  background: #1a202c;
    color: #e2e8f0;}

.footer-container {
          max-width: 1200px;
     margin: 0 auto;
}

.footer-logo-section {
    margin-bottom:     2rem;

}

.footer-logo {
  height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
   display: block;
}

.footer-content {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  font-size: 1.1rem;
               margin-bottom     :    1.2rem;
      color: #fff;
}

.footer-links {
	list-style: none;
  display: flex;
  flex-direction     :      column;
    gap: 0.8rem;
}

.footer-links a {
	 color: #cbd5e0;
    text-decoration    :   none;
    transition: color 0.3s ease;
   font-size: 0.95rem;
}

.footer-links a:hover {
  color: #667eea;
}

.footer-address {
   font-size: 0.95rem;
	 line-height: 1.8;
  color: #cbd5e0;
  margin-bottom: 1rem;
}

.footer-phone {
    font-size: 0.95rem;
   color: #cbd5e0;
}

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 1.5rem;
    text-align: center;
   font-size: 0.9rem;
	color: #a0aec0;
}



.copyright {
    margin: 0;


}@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        padding: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-banner {
        grid-template-columns: 1fr;
        padding: 2.5rem 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .services-overview {
        padding: 3rem 1rem;
    }

    .services-overview h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .why-courage {
        padding: 3rem 1rem;
    }

    .why-courage h2 {
        font-size: 1.8rem;
    }

    .cta-section {
        padding: 2.5rem 1rem;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .contact-block {
        padding: 3rem 1rem;
    }

    .contact-block h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        gap: 1.2rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-large {
        width: 100%;
        text-align: center;
    }

    .services-overview h2,
    .why-courage h2,
    .contact-block h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}.policySection {
  padding: 80px 2rem;
  background: #f8f9fa;
}

.policyContainer {
    max-width: 800px;
    margin: 0 auto;
	 text-align: left;
}

.policyContainer h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom  :  1.5rem;
    font-weight: 700;
}

.policyContainer p {
  color: #7f8c8d;
    line-height: 1.7;
   font-size   :     1.1rem;
  margin-bottom: 1.5rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.services-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
     padding: 4rem 2rem;
  text-align: center;
	}

.header-content h1 {
	 font-size: 2.6rem;
  margin-bottom: 1rem;
     font-weight: 700;
}

.header-content p    {
   opacity: 0.95;
               font-size: 1.2rem;
}

.services-detailed {
  padding   :      5rem 2rem;
	background: #fafbfc;
}

.service-detail-item {
	 display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
   margin-bottom: 5rem;
}

.service-detail-item.reverse {

	  direction  :        rtl;
	}

.service-detail-item.reverse > * {
    direction: ltr;
}

.service-detail-image {
  position :     relative;
  overflow: hidden;
	border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.detail-img {
   width: 100%;
  height: auto;
    display: block;
    object-fit: cover;
}

.service-detail-content h2 {
   margin-bottom: 1rem;
	font-size: 2rem;
    color: #2c3e50;
}

.service-description {
     color: #555;

	font-size: 1.05rem;

  line-height: 1.7;

  margin-bottom: 2rem;


}

.service-details-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap    :     1.5rem;
  margin: 2rem 0;
}

.detail-point h4


{
    color: #667eea;
    font-size: 0.95rem;
    font-weight: 600;
  text-transform: uppercase;
   margin-bottom: 0.5rem;
}


.detail-point p {
     color: #666;
  font-size: 0.9rem;
	}

.service-highlight {
	background: #e3f2fd;
    padding: 1.5rem;
     border-left: 4px solid #667eea;
       border-radius  :6px;
  color    :      #1a237e;
    font-size: 0.95rem;
    line-height: 1.6;
         margin-top: 2rem;
}

.service-pricing {
  padding: 5rem 2rem;
    background: #fff;
}

.service-pricing h2 {


	text-align: center;
   font-size: 2.4rem;
  color:     #2c3e50;
    margin-bottom: 0.5rem;}

.pricing-intro {
   text-align: center;
  font-size: 1.05rem;
   margin-bottom: 3rem;
   color: #666;
}

.pricing-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
   max-width: 1400px;
   margin  :  0 auto;
}  

.pricing-card {
     background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius :   12px;
    padding: 2rem;
    position     :        relative;
 transition: all 0.3s ease;
  text-align: center;}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    border-color:#667eea;
}

.pricing-card.featured {
	 border :  2px solid #667eea;
  background: linear-gradient(135deg, #f0f4ff 0%, #fafbfc 100%);
  transform: scale(1.05);
}

.badge    {
    position  : absolute;
   top: -12px;
	left: 50%;
  transform: translateX(-50%);
	background: #667eea;
   color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 1.3rem;
                    color: #2c3e50;
   margin-bottom: 1rem;
}

.price {
   font-size   :      2.2rem;
	 color: #667eea;
       font-weight: 700;
  margin-bottom: 1.5rem;
	
}

.features-list {

  text-align: left;
                    list-style   :      none;
   margin: 1.5rem 0;
     }

.features-list li {
	     padding: 0.6rem 0;
    color: #555;
   font-size: 0.95rem;
    border-bottom  :       1px solid #e5e7eb;}

.features-list li:last-child {
    border-bottom: none;
}

.pricing-cta {
   display: inline-block;
   margin-top  :1.5rem;
  padding: 0.9rem 1.8rem;
  background: #f0f0f0;
        color: #667eea;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.pricing-cta:hover {

  background: #667eea;
  color: white;
   border-color :    #667eea; 



}

.featured-cta {
  background: #667eea;
   color: white;
      border-color    :       #667eea;
}

.featured-cta:hover {
  background    :   #5568d3; 
  box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

.faq-section {
   padding: 5rem 2rem;
  background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);

}

.faq-section h2 {
 text-align: center;
    font-size :  2.4rem;
   color: #2c3e50;
	 margin-bottom: 3rem;

}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  max-width: 1200px;
   margin: 0 auto;
}  

.faq-item {
    background: white;
	 padding: 1.8rem;
		 border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #667eea;
}



.faq-item h4 {
       color:    #2c3e50;
  font-size: 1.1rem;
    margin-bottom: 0.8rem;
}

.faq-item p {
  color: #666;
   font-size: 0.95rem;
 line-height: 1.6;
}

.testimonials-section    {
   padding: 5rem 2rem;
          background     :      white;
}



.testimonials-section h2 {

    text-align: center; 
	      font-size: 2.4rem; 
	  color: #2c3e50; 
	     margin-bottom: 3rem;
     }

.testimonials-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
    max-width: 1200px;
   margin: 0 auto;
}

.testimonial-card {
    background: #f9fafb;
	 padding: 2rem;
    border-radius :      8px;
   border-top: 4px solid #667eea;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
         color: #555;
  font-size :       1rem;
   line-height: 1.7;
	margin-bottom: 1rem;
  font-style: italic;
}

.testimonial-author {
    color: #667eea;
   font-weight: 600;
  font-size: 0.95rem;
} 

.thankyou-section {

	  padding: 6rem 2rem;

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	    min-height: 70vh;

	   display: flex;

	        align-items: center;

	  justify-content: center;

	   color: white;
	}

.thankyou-container {
    max-width: 700px;
  text-align     : center;

}

.thankyou-content {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius  :  12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-icon {
   margin-bottom: 2rem;

	   animation    :      slideInDown 0.6s ease;
}

.success-icon svg {
     animation: scaleIn 0.6s ease;
}

.thankyou-content h1  {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
   font-weight: 700;
} 

.thankyou-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
  margin-bottom    :     2rem;
}

.thankyou-message {
     background: rgba(255, 255, 255, 0.1);
   padding   :     2rem;
   border-radius: 8px;
   margin: 2rem 0;
   line-height: 1.7;
	}

.thankyou-message p    {
	margin-bottom: 1rem;
}

.thankyou-message p:last-child {
   margin-bottom: 0;
}

.next-steps {

	    text-align: left;
	    margin: 2rem 0;}

.next-steps h3{
    font-size: 1.3rem;
  margin-bottom: 1rem;
}

.steps-list {
  list-style: none;
                    padding-left: 0;
}

.steps-list li{
     padding: 0.7rem 0;
    padding-left: 2rem;
  position: relative;
}

.steps-list li:before {
  content: "✓";
  position: absolute;
   left: 0;
    color   :#4ade80;
   font-weight: bold;
  font-size:1.2rem;
}

.quick-actions {
	 display: flex;
    gap: 1rem;
  justify-content: center;
	margin :  2rem 0;
    flex-wrap: wrap;
}

.action-button {
   padding: 1rem 2rem;
  border-radius: 6px;
    text-decoration: none;
         font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.95rem;
}

.action-button.primary {
   background: white;

	color: #667eea;

   border: 2px solid white;
}

.action-button.primary:hover {
   background: #f0f0f0;
  transform: translateY(-2px);
}

.action-button.secondary {
  background: transparent;
  color: white;
      border     :  2px solid white;
}

.action-button.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.contact-info-banner     {
  background: rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-info-banner h4 {
  font-size: 1.1rem;
    margin-bottom: 0.8rem; 

}

.contact-info-banner p {
  font-size: 0.95rem;
    margin-bottom: 0.5rem;
   opacity: 0.95;
}

.other-services-preview{
	   padding: 5rem 2rem;

	        background: white;
}

.other-services-preview h2 {
    text-align: center;
   font-size: 2.2rem;
    color: #2c3e50;
	 margin-bottom: 3rem;
}

.services-preview-grid {
		display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   max-width    :       1200px;
    margin  :       0 auto;}

.preview-card {

    background: #f9fafb;
     padding: 2rem;
      border-radius: 8px;
     border: 2px solid #e5e7eb;
   	transition: all 0.3s ease;
}

.preview-card:hover{
  border-color: #667eea;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.preview-card h4 {
	color  :#2c3e50;
    font-size:  1.1rem;
	 margin-bottom: 0.8rem;
}

.preview-card p {
    color: #666;
   font-size: 0.95rem;
   margin-bottom     :    1.2rem;
}

.preview-card a {


   display: inline-block;
  color: #667eea;
  text-decoration: none;
	 font-weight: 600;
  transition     :color 0.3s ease;}

.preview-card a:hover {
    color: #5568d3;
}  @keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}@media (max-width: 768px) {
    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .service-detail-item.reverse {
        direction: ltr;
    }

    .header-content h1 {
        font-size: 1.8rem;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .quick-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
        text-align: center;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid,
    .testimonials-grid,
    .services-preview-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-section {
        min-height: auto;
        padding: 3rem 1rem;
    }
}