* {
   margin: 0;
   padding: 0;
  box-sizing: border-box;
}
/* Custom modifications */


html     {
       scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                    color: #2c3e50;
  background-color: #f8f9fa;
	line-height    :   1.6;


}

.header-section {
  background: linear-gradient(135deg, #1a2a4a 0%, #2d3f5f 100%);
  padding: 1rem 0;
         position: sticky;
  top     :  0;
   z-index: 1000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.navbar-container {

	  max-width: 1200px;
  margin: 0 auto;
    padding: 0 2rem;
  display: flex;
   justify-content: space-between;
                    align-items: center;


} 

.nav-brand {
                    display: flex;
       align-items: center;
}



.logo-img {
	    height   :  45px;
   width: auto;
	
	}
	/* Hack for old browsers */

/* Build system output */


/* Minified version */

.burger-toggle


{
   display: none;
  flex-direction: column;
  background: none;
   border: none;
	cursor: pointer;
   padding: 8px;
}

.burger-line {
   transition: all 0.3s ease; 
	    background-color: #ffffff; 
		margin   :      5px 0; 
	   border-radius: 2px; 
	    width: 25px; 
	   height: 3px;
}

.nav-menu {
    display   : flex;
         list-style: none;
	gap :      2rem;
}

.nav-link {

	   color: #ffffff;
   text-decoration    :     none;
    font-size    :  1rem;
    font-weight: 500;
    transition: color 0.3s ease;
  padding: 8px 12px;}

.nav-link:hover {
    color:  #64b5f6;
}

.hero-section {
 max-width: 1200px;

    margin: 0 auto;

	 padding: 4rem 2rem;

   display: grid;

   grid-template-columns: 1fr 1fr;

    gap: 3rem;

    align-items: center;
}  

.hero-content {
      display: flex;
    flex-direction: column;
    gap: 1.5rem;

}

.hero-section h1 {


    font-size: 3rem;

	   font-weight: 700;

	  color :    #1a2a4a;

	  line-height: 1.2;


}

.hero-subtitle
	{
   font-size:1.2rem;
  color: #555555; 
	
}

/* FIXME: IE11 compatibility */

.cta-button {
   display: inline-block; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	       color: white; 
	          padding  :    14px 32px; 
	   text-decoration: none; 
	 border-radius   :      6px; 
	    font-weight: 600; 
						transition: all 0.3s ease; 
	  width: fit-content; 
	  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hero-image {
     width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

}

.services-intro-section {
  background-color: #ffffff;

   padding  :        5rem 2rem;

    max-width: 1200px;

  margin: 0 auto;
}

/* Component styles */

.services-intro-section h2 {
   font-size: 2.5rem;
  text-align: center;
   color: #1a2a4a;
   margin-bottom: 3rem;
}

.services-grid {
  display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
     }

.service-card {
    transition: all 0.3s ease;
   background: #f8f9fa;
   border-radius: 10px;
               border: 1px solid #e0e0e0;
   overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.card-image {
   width: 100%;
   height     :   250px;
  object-fit: cover;
}

.service-card h3 {
   font-size: 1.4rem;
   color: #1a2a4a;
  padding: 1.5rem 1.5rem 0.5rem; 
	
}

.service-card p {

    padding: 0 1.5rem 1.5rem;
    color: #666666;
    font-size: 0.95rem;
	}

.thinking-development-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
	padding: 5rem 2rem;
    max-width: 1200px;
   margin: 0 auto;
  display: grid;
   grid-template-columns     :       1fr 1fr;
   gap: 3rem;
        align-items: center;
}

.thinking-content h2 {
  font-size: 2.2rem;
      color: #1a2a4a;
   margin-bottom: 1.5rem;
}

.thinking-content p {
    color: #555555;
    font-size: 1rem;
  margin-bottom: 1.5rem;
}
/* Minified version */

.benefits-list {
    list-style: none;
	 display: flex;
 flex-direction: column;
				 gap: 1rem;
}

.benefits-list li {
       color: #2c3e50;
       padding-left: 1.5rem;
   	position: relative;
     }

.benefits-list li:before {
  content: '';
  position: absolute;
   left: 0;
	 top: 0.5rem;
 width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius  :    50%;
}

.thinking-image {
    width: 100%;
  height: auto;
	border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
	
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 4rem 2rem;
  text-align: center;
   margin: 3rem auto;
   max-width: 1000px;
    border-radius: 12px;
}

.cta-box h2 {
  color: white;
    font-size: 2.2rem;
     margin-bottom: 1rem;
}

.cta-box p {
   color: #e8e8ff;
	font-size: 1.1rem;
	margin-bottom: 2rem;
}

.cta-button-large
{
  display: inline-block;
                       background-color: white;
   	 color: #667eea;
       padding: 16px 40px;
   	text-decoration: none;
     border-radius: 6px;
       font-weight: 700;
     transition: all 0.3s ease;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover  {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-section {
   background-color: white;
  padding: 5rem 2rem;
  max-width: 700px;
	margin: 0 auto;
}

.contact-section h2		{
  text-align: center;
  font-size: 2.2rem;
	 color: #1a2a4a;
    margin-bottom: 2rem;
}

/* Production ready */
.contact-form {
         display: flex;
  flex-direction :      column;
    gap: 1.5rem;


}

.form-group {
   flex-direction: column;

					 display   :       flex;
}

.form-group label {
   font-weight: 600;

  color: #2c3e50;

  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea


{


  padding:    12px;
	border :  2px solid #e0e0e0;
  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);
}

.form-group textarea {
    resize :    vertical;
    min-height: 120px;
	
}

.form-submit

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color   :     white;
   padding: 14px 28px;
   border: none;
    border-radius: 6px;
    font-size: 1rem;
   font-weight:     700;
	cursor: pointer;
   transition   :    all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.form-submit:hover

{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.footer-section {

		color: #ecf0f1;
  background: #1a2a4a;
    padding: 3rem 2rem;
    margin-top: 4rem;}

.footer-content {
 max-width: 1200px;
	margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-brand {
   display:        flex; 
    align-items: flex-start;
}

.footer-logo {
   height   :        50px;
  width  :        auto;
	
}

.footer-info h4,
.footer-links h4 {
  font-size  :        1.1rem;
  margin-bottom: 1rem;
   color: #ffffff;
}

.footer-info p {
   margin-bottom: 0.8rem;
  color: #bdc3c7;
}

.footer-links ul {
   list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
   color: #bdc3c7;
    text-decoration: none;
   transition  :      color 0.3s ease;
	}

.footer-links a:hover {

	   color: #64b5f6;
	}

.footer-copyright {
   text-align: center;
   color: #95a5a6;
   padding-top: 2rem;
  font-size: 0.9rem;
    grid-column: 1 / -1;
                    border-top: 1px solid #34495e;
}
@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #1a2a4a;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid #2d3f5f;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .thinking-development-section {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        margin: 2rem 1.5rem;
        padding: 2.5rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.6rem;
    }

    .contact-section {
        padding: 3rem 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .services-intro-section h2 {
        font-size: 1.8rem;
    }

    .thinking-content h2 {
        font-size: 1.6rem;
    }

    .cta-box h2 {
        font-size: 1.4rem;
    }

    .cta-box p {
        font-size: 1rem;
    }
}.policySection {
  padding: 80px 2rem;
    background: #f8f9fa;
}

.policyContainer {
  max-width: 800px;
        margin: 0 auto;
   text-align: left;
}

.policyContainer h1 {

	 font-size: 2.8rem;
   color: #1a2a4a;
    margin-bottom: 2rem;
	 font-weight: 700;
    text-align: center;
	}

.policyContainer h2 {
          font-size: 2.5rem;
       color: #1a2a4a;
       margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

.policyContainer h2:first-of-type {
		 margin-top: 0;

}

.policyContainer p {
  color: #2c3e50;
   margin-bottom: 1.5rem;
  line-height: 1.7;
   font-size: 1.1rem;
}

.policyContainer ul {
  margin: 1rem 0 1.5rem 1.5rem;
}

.policyContainer ul li {
  color: #2c3e50;
         margin-bottom : 0.8rem;
   font-size: 1.1rem;
  line-height: 1.6; 
	
}

.policyContainer p strong {
   color: #1a2a4a;
} @media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2.2rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p,
    .policyContainer ul li {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer h1 {
        font-size: 1.8rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policySection {
        padding: 40px 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #2d3f5f 0%, #1a2a4a 100%);
  color :  white;
   padding: 5rem 2rem;
  text-align:      center;
  max-width: 1200px;
  margin: 0 auto;
}

.services-hero h1 {

	   font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
     }

.services-hero p {
  font-size: 1.2rem;
	color   :      #b0c4de; 
	
}

.services-detailed {
    background-color: #f8f9fa;
    padding:       4rem 2rem;
   max-width: 1200px;
   margin :     0 auto;

}

.services-container {

	  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
	 gap: 2.5rem;

} 

.service-item {
    background: white;
    border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
    flex-direction   :     column;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.service-header {
	   padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  display :        flex;
   justify-content: space-between;
  align-items  :flex-start;
  gap: 1rem;
}

.service-header h2 {
   font-size: 1.4rem;
  color: #1a2a4a;
   flex:      1;
} 

.service-badge {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding : 0.5rem 1rem;
   border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
   white-space: nowrap; 

     }

.service-featured-image {
  width: 100%;
   height: 220px;
  object-fit: cover;
}

.service-body {
    padding: 1.5rem;
   flex-grow     :        1;
    display: flex;
  flex-direction: column;
}

.service-intro {
  color: #555555;
	 font-size: 0.95rem;
    margin-bottom   :   1rem;
    font-weight :  500;
}

.service-body h3 {
   font-size:       1rem;
    color: #2c3e50;
    margin-bottom : 0.8rem;
	 font-weight: 600;
}

.service-features {
     list-style: none;
    margin-bottom: 1.5rem;
    flex-grow     :    1;
}

.service-features li {
   padding: 0.6rem 0;
    color: #555555;
    font-size   :   0.9rem;
  padding-left: 1.2rem;
   position: relative;
}

.service-features li:before {

	  content: '';
     position: absolute;
   left: 0;
  top: 0.8rem;
    width: 6px;
    height: 6px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;



}

.service-cta {
    display :    inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 12px 24px;
          text-decoration: none;
        border-radius: 6px;
	font-weight: 600;
  font-size: 0.9rem;
  transition   : all 0.3s ease;
    text-align:    center;
    width: fit-content;
	
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.comparison-section
{
 background: white;
   padding:       4rem 2rem;
		max-width: 1200px;
  margin: 0 auto;
}


.comparison-section h2 {
   text-align: center;
	 font-size: 2.2rem;
    color: #1a2a4a;
    margin-bottom: 2rem;


}

.comparison-table-wrapper {
    overflow-x: auto;
      border-radius: 8px;
     box-shadow: 0 2px 8px 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%);
}

.comparison-table th {
   color   :   white; 
   padding: 1rem; 
	 text-align: left; 
  font-weight :      600;}

.comparison-table td {
	padding: 1rem;
  border-bottom: 1px solid #e0e0e0;
    color: #555555;
}

.comparison-table tbody tr:hover {
    background-color   :        #f8f9fa;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #fafbfc; 
	
}

.faq-services {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
	 padding: 4rem 2rem;
    max-width: 1200px;
   margin: 0 auto;
}

.faq-services h2 {
  text-align: center;
  font-size :    2.2rem;
   color: #1a2a4a;
  margin-bottom: 2rem;
	}

.faq-container{


    gap: 1rem;
	display: flex;
  flex-direction :column;
}

.faq-item {
  background  : white;
   border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-trigger {
	  width: 100%;
  padding: 1.5rem;
	border  :        none;
  background: white;
	text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2a4a;
  cursor: pointer;
   transition: all 0.3s ease;
  display: flex;
    justify-content: space-between;
  align-items: center;
     }

.faq-trigger:hover {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.faq-trigger:after {
		font-weight: 300;
          color: #667eea;
  content: '+';
    font-size: 1.5rem;}



.faq-item.active .faq-trigger {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color :    white;
}

.faq-item.active .faq-trigger:after {
  content: '−';
 color: white;
}

.faq-content  {
      transition:    max-height 0.3s ease;
	 max-height: 0;
    overflow: hidden;
}

.faq-item.active .faq-content     {
   max-height: 500px;
}

.faq-content p
	{
	padding: 0 1.5rem 1.5rem;
    color: #555555;
   line-height: 1.6;
}

.why-choose-moonshot {
  background     :   white;
  padding: 4rem 2rem;
   max-width    :   1200px;
   margin: 0 auto;
}

.why-choose-moonshot h2 {
	text-align: center;
  font-size: 2.2rem;
  color: #1a2a4a;
  margin-bottom: 2rem;
}

.why-grid {
   display  :    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-item {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    padding: 2rem;
    border-radius: 10px;
				 transition: all 0.3s ease;
}

.why-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-item h3 {
   margin-bottom: 0.8rem;
                       font-size: 1.1rem;
      color: #1a2a4a;
}

.why-item p {
    color: #555555;
	                    font-size: 0.95rem;
	               line-height     :     1.5;


}  

.thankyou-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
	 min-height: 60vh;
               display: flex;
   align-items: center;
  justify-content: center;
}

.thankyou-container {
    background: white;
  border-radius: 16px;
   padding: 3rem;
  max-width: 700px;
   text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.thankyou-icon {
         display: flex;
   justify-content:   center;
	 margin-bottom: 1.5rem;
  color: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

}

.thankyou-icon svg {
   color: #667eea;
  animation: checkmarkPulse 0.5s ease-out;
}@keyframes checkmarkPulse {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-container h1     {
  font-size:   2rem;
    color :    #1a2a4a;
    margin-bottom: 0.5rem;
}

.thankyou-subtitle {
   font-size: 1.1rem;
         color: #555555;
   margin-bottom: 2rem;
}

.thankyou-info {
   display: grid;
		grid-template-columns: 1fr 1fr;
	  gap: 2rem;
	  margin-bottom: 2rem;
	    text-align: left;
}

.info-box {
   background: #f8f9fa;
    padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #667eea;
}

.info-box h3 {
   color: #1a2a4a;
    margin-bottom    :  1rem;
  font-size  :        1rem;
}

.next-steps
{
		list-style: none;
  color: #555555;
    font-size: 0.9rem;
}

.next-steps li {
	    padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;


}

.next-steps li:before {
  content: '✓'; 
    position: absolute; 
    left: 0; 
  color: #667eea; 
	font-weight: bold;
}

.info-box p {
   color: #555555;
   font-size: 0.9rem;
}

.info-note  {
                    font-size: 0.85rem;
  color: #888888;
   margin-top  :    0.5rem;
}

.thankyou-actions {
     display     :        flex;
   gap     :   1rem;
    justify-content: center;
  margin-bottom: 2rem;
}

.thankyou-button {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 12px 28px;
		 text-decoration: none;
   border-radius    :      6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
	
}

.thankyou-button:hover
	{
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);


}

.thankyou-button-secondary {
                    display: inline-block;
   background: transparent;
  color: #667eea;
    padding    :   12px 28px;
	text-decoration: none;
   border: 2px solid #667eea;
   border-radius: 6px;
    font-weight: 600;
  font-size   :0.95rem;
  transition: all 0.3s ease;
}

.thankyou-button-secondary:hover   {
   background: #667eea;
	 color: white;
}

.contact-reminder

{
  border-radius: 8px;
   text-align: left;
    border-left: 4px solid #764ba2;
    background: #e8ecf1;
  padding: 1.5rem;
}

.contact-reminder h4
	{
  color: #1a2a4a;
  margin-bottom: 0.5rem;
}  

.contact-reminder p    {
  color: #555555;
      font-size: 0.95rem;
}

.next-programs-section 
 {
  background-color: #f8f9fa;
  padding: 4rem 2rem;
	max-width: 1200px;
    margin   :        0 auto;

}

.next-programs-section h2 {
  text-align: center;
  font-size :     2rem;
  color: #1a2a4a;
  margin-bottom:   2rem;
}

.programs-grid {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem; 



}

.program-card {
   background: white;
    padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

}


.program-card h3 {
  margin-bottom: 0.8rem;
   color: #1a2a4a;
  font-size: 1.1rem;} 

.program-card p  
  {
  color: #555555; 
   font-size: 0.9rem; 
  line-height: 1.5;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-info {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-button,
    .thankyou-button-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.4rem;
    }

    .service-header {
        flex-direction: column;
    }

    .service-badge {
        align-self: flex-start;
    }

    .comparison-section h2 {
        font-size: 1.5rem;
    }

    .faq-services h2 {
        font-size: 1.5rem;
    }

    .thankyou-container h1 {
        font-size: 1.5rem;
    }

    .faq-trigger {
        padding: 1rem;
    }
}