* {
   margin    :  0;
  padding: 0;
   box-sizing: border-box;
}

body     {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color: #2d3748;
  background: #ffffff;
}

.main-nav {
    background:    #1a202c;
   padding     :     1rem 0;
  position: sticky;
  top:    0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-wrapper {
   max-width: 1200px;
	margin: 0 auto;
  padding: 0 20px;
    display: flex;
   justify-content: space-between;
    align-items: center;
}

.logo-section .site-logo {
    height: 45px;
   width: auto;
}

.burger-toggle {
   display: none;

	     background: none;

	  border: none;

	  cursor: pointer;

	    flex-direction: column;

	    gap: 5px;
}

.burger-line {
         width: 28px;
	    height :        3px;
	    background: #fff;
	   transition: all 0.3s ease;
}

.burger-toggle.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-toggle.active .burger-line:nth-child(2) {
   opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3)     {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links		{


	display: flex; 
	    gap: 2rem;


}

.nav-item {
  color:   #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
    padding    :    8px 0;
}

.nav-item:hover
	{
      color: #4fd1c5;


}

.hero-area {
  display: grid;
                    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  max-width   :     1200px;
		 margin: 4rem auto;
   padding: 0 20px;
  align-items: center;
}

.hero-content h1		{
  font-size: 2.5rem;
    color: #1a202c;
  margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-subtitle {
	  font-size    :    1.125rem; 
   color: #4a5568; 
                    margin-bottom: 2rem;


}

.hero-actions {
	  display: flex; 
	  gap: 1rem;

}

.primary-btn, .secondary-btn {
   padding: 14px 32px;
  text-decoration: none;
    border-radius: 6px;
    font-weight  : 600;
   transition: all 0.3s;
    display: inline-block;
}

.primary-btn {
   background: #4fd1c5;
    color: #1a202c; 
	
}

.primary-btn:hover {
  background: #38b2ac;
  transform: translateY(-2px);
}

.secondary-btn    {
   background    :    #2d3748;
   color: #fff;
}

.secondary-btn:hover {
  background: #1a202c;
}

.hero-visual img {
  width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.services-overview {
  background: #f7fafc;
	padding: 5rem 20px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
   margin: 0 auto 3rem;
}

.section-intro h2 
 {
   font-size: 2.25rem;
    color:  #1a202c;
    margin-bottom: 1rem;
}

.section-intro p {
				 font-size: 1.125rem;
	 color: #4a5568;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
   max-width: 1200px;
  margin    :     0 auto;
}

.service-card {
    background: #fff;
               padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s; 
	
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-icon-placeholder {
  width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
 border-radius: 50%;
   margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #1a202c;
	margin-bottom: 1rem;
}

.service-card p {

		color: #4a5568;
	    line-height: 1.7;

}

.methodology-section {
    display   :    grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 5rem auto;
  padding: 0 20px;
 align-items: center;
}

.method-visual img {
	 width: 100%;

    border-radius: 12px;
}

.method-content h2 {
   font-size: 2rem;
    color :        #1a202c;
               margin-bottom: 1.5rem;
}

.method-content p {
   color: #4a5568;
   margin-bottom: 2rem;
  line-height   :       1.7;
}

.method-points {
    list-style: none;
    margin-bottom: 2rem;
}

.method-points li {
    padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
          color: #2d3748;
}

.method-points li:before {
     content: "✓";
   position: absolute;
    left: 0;
   color   :    #4fd1c5;
  font-weight: bold;
    font-size: 1.25rem;


}

.learn-more-link {
  color: #4fd1c5;
	text-decoration: none;
    font-weight   :   600;
    transition:     color 0.3s;
}

.learn-more-link:hover {
	color: #38b2ac;
}

.cta-section


{

  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%); 
	  padding: 4rem 20px; 
	  margin: 5rem 0;

}

.cta-container {
	  max-width: 1000px;
    margin: 0 auto;
  display  :        flex;
   justify-content: space-between;
  align-items: center;
		 gap: 3rem;
     }

.cta-text h2 {
    color: #fff;
    font-size: 2rem;
  margin-bottom: 1rem; 

}



.cta-text p {
   color:  #cbd5e0;
    font-size: 1.125rem;
	
}

.cta-action {
               text-align  : center;
}

.cta-button {
    background: #4fd1c5;
      color: #1a202c;
  padding: 16px 40px;
    text-decoration: none;
  -moz-border-radius: 6px;
   -webkit-transition :  all 0.3s;
    -webkit-border-radius: 6px;
  border-radius: 6px;
  -moz-transition :all 0.3s;
   font-weight: 600;
  font-size: 1.125rem;
    display: inline-block;
   transition: all 0.3s;
}

.cta-button:hover   {
   background: #38b2ac;
  transform: translateY(-2px);
}

.cta-note {
    display: block;
	    margin-top: 1rem;
	  color: #cbd5e0;
	   font-size: 0.875rem;
}

.why-choose-us {
     max-width: 1200px;
   margin: 5rem auto;
  padding: 0 20px;
     }

.why-choose-us h2 {
	 text-align: center;
   font-size: 2.25rem;
    color:#1a202c;
    margin-bottom    :   4rem;
	
}

.benefits-layout {
    display: flex;
  flex-direction    :     column;
    gap: 4rem;
}

.benefit-item


{
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.benefit-item.reverse {

		direction: rtl;


}

.benefit-item.reverse > * {
   direction: ltr;
}

.benefit-visual img
	{
    width: 100%;
    border-radius: 8px;
}

.benefit-text h3
{
    font-size: 1.75rem;
  color: #1a202c;
	margin-bottom    :     1rem;
}

.benefit-text p {
    color: #4a5568;
  line-height: 1.7;
}

.contact-section {
    background: #f7fafc;
   padding: 5rem 20px;
}

.contact-wrapper
	{
     max-width  :    1200px;
   margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

.contact-info h2 {
  color :     #1a202c;
  font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-info p {
          color: #4a5568;
    margin-bottom: 2rem;
}

.info-blocks {
   display: flex;
    flex-direction:   column;
   gap: 2rem;
}

.info-block h4  {
    margin-bottom: 0.5rem;
  font-size: 1.125rem;
   color: #2d3748;
}

.info-block p   {
   color  :     #4a5568;
					margin: 0;
}

.contact-form-container {
  background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.consultation-form .form-group {
  margin-bottom: 1.5rem;
}

.consultation-form label
	{
	display: block;
    margin-bottom: 0.5rem;
    color    :   #2d3748;
    font-weight: 500;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
  width: 100%;
   padding: 12px;
    border  :       1px solid #cbd5e0;
    border-radius: 4px;
  font-size: 1rem;
    font-family: inherit;
	transition: border-color 0.3s;
}

.consultation-form input:focus,
.consultation-form select:focus,
.consultation-form textarea:focus {
    outline: none;
   border-color: #4fd1c5;
}


.consultation-form textarea {
    resize: vertical;
}

.submit-btn	{

    background: #4fd1c5;
    color: #1a202c;
         padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size  :      1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
    width: 100%;}

.submit-btn:hover {
  background: #38b2ac;
}

.site-footer {
    background: #1a202c;
   color: #cbd5e0;
   padding     :     3rem 20px 1.5rem;
}

.footer-content {
  max-width: 1200px;
   margin: 0 auto;
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap  :        2rem;
   margin-bottom: 2rem;
}

.footer-logo {
    height  :40px;
	width: auto;
    margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-desc {
   color: #a0aec0;
   line-height    :1.6;
}

.footer-column h4 {
    color: #fff;
  margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-links {
      list-style: none;
	
}

.footer-links li {
    margin-bottom :0.75rem;
}

.footer-links a {

	    color: #cbd5e0;
   text-decoration: none;
    transition: color 0.3s;

}

.footer-links a:hover {
	color: #4fd1c5;
}

.footer-column p {
	    color: #a0aec0;
   line-height:        1.6;
}

.footer-bottom {
   max-width: 1200px;
   margin: 0 auto;
  padding-top:  2rem;
  border-top: 1px solid #2d3748;
   text-align: center;
}

.footer-bottom p {
    color: #a0aec0;
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a202c;
        flex-direction: column;
        padding: 1rem 20px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-links.active {
        max-height: 300px;
    }
    
    .nav-item {
        padding: 1rem 0;
        border-bottom: 1px solid #2d3748;
    }
    
    .hero-area {
        grid-template-columns: 1fr;
        margin: 2rem auto;
    }
    
    .hero-content h1 {
        font-size: 1.875rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .methodology-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-item,
    .benefit-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section-intro h2 {
        font-size: 1.75rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
   padding: 80px 2rem;

 background:       #f8f9fa;
}

.policyContainer {
  max-width: 800px;
      margin: 0 auto;
   text-align: left;
}

.policyContainer h2 {
	    margin-bottom :    1.5rem;
    font-weight: 700;
	color    :      #2c3e50;
   font-size: 2.5rem;




}

.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 {
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    padding: 5rem 20px;
   text-align: center;
  color: #fff;
}

.about-hero-content h1 {
	font-size: 2.75rem;
    margin-bottom   :        1rem; 

}

.about-hero-content p {
   font-size: 1.25rem;
    color :      #cbd5e0;
}

.our-story {
     padding :      5rem 20px;
    background: #fff;
}

.story-container {
    max-width: 1200px;
	margin: 0 auto;
   display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
    align-items    :     center;
}

.story-text h2 {
       font-size: 2.25rem;
  color: #1a202c;
    margin-bottom: 1.5rem;
}

.story-text p {
   color: #4a5568;
	 line-height: 1.8;
    margin-bottom :       1.5rem;
}

.story-image img {
    width  :  100%;
    border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.values-section {
   background: #f7fafc;
  padding: 5rem 20px;
}

.values-section h2 {
   text-align: center;
   font-size: 2.25rem;
  color: #1a202c;
    margin-bottom: 3rem;
}

.values-grid


{
  max-width: 1200px;
	  margin: 0 auto;
	  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	    gap: 2rem;
}

.value-card {
   background    :        #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    position     :        relative;
    transition :     transform 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-number {
   font-size: 3rem;
          font-weight: bold;
    color: #e2e8f0;
   position: absolute;
   top: 1rem;
  right: 1.5rem;
}

.value-card h3 {
  font-size: 1.5rem;
  color: #1a202c;
    margin-bottom  :       1rem;
    position: relative;
   z-index: 1;
}

.value-card p {
   color: #4a5568;
	line-height: 1.7;
}

.expertise-area {
      padding: 5rem 20px;
}

.expertise-wrapper {
    max-width: 1200px;
    margin: 0 auto;
               display: grid;
   grid-template-columns    :1fr 1fr;
   gap: 4rem;
  align-items: center;
}

.expertise-visual img {
      width: 100%;
  border-radius: 8px;

} 

.expertise-content h2 {
       font-size: 2rem;
   color: #1a202c;
   margin-bottom: 1.5rem;


}

.expertise-content p


{
   color   :      #4a5568;

	  margin-bottom: 1.5rem;

	  line-height: 1.7;
}

.expertise-list {
    list-style: none;
    margin: 0;
   padding: 0;
}

.expertise-list li {
  padding :       0.75rem 0 0.75rem 2rem;
	position: relative;
    color :  #2d3748;
  border-bottom: 1px solid #e2e8f0;
}

.expertise-list li:before {
  content: "→";
  position: absolute;
    left: 0;
  color: #4fd1c5;
        font-weight: bold;
}

.approach-methodology {
    background: #f7fafc;
   padding: 5rem 20px;
}

.approach-methodology h2 {
	text-align: center;
       font-size: 2.25rem;
    color: #1a202c;
   margin-bottom: 3rem;
}

.methodology-steps {
  max-width :   900px;
    margin: 0 auto;
  display: flex;
    flex-direction: column;
        gap  :       2rem; 

}

.step-item {
   background: #fff;
          padding: 2rem;
	 border-radius: 8px;
  border-left: 4px solid #4fd1c5;
}

.step-header {
  display: flex;
   align-items: center;
       gap: 1rem;
   margin-bottom: 1rem;
}

.step-icon {

   width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #4fd1c5 0%, #38b2ac 100%);
  border-radius: 50%;
	flex-shrink: 0;}

.step-item h3    {
    font-size: 1.5rem;
   color: #1a202c;
}

.step-item p {
 color: #4a5568;
   line-height    :      1.7;
}

.team-overview


{
    padding: 5rem 20px;
}

.team-content {
    max-width: 900px;
  margin: 0 auto;
    text-align: center;
}

.team-content h2 {
  font-size: 2.25rem;
  color   :  #1a202c;
  margin-bottom: 1.5rem;
}

.team-content p {
    color: #4a5568;
	line-height  :     1.8;
    margin-bottom     :   1.5rem;
    font-size: 1.0625rem;
}

.team-visual {
   margin-top: 3rem;
}

.team-visual img {
    width: 100%;
    max-width: 700px;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.achievements-stats {
  background:   #1a202c;
   padding: 5rem 20px;
   color: #fff;
}

.achievements-stats h2 {
    text-align: center;
  font-size: 2.25rem;
   margin-bottom  :    3rem;
}

.stats-container {
   max-width: 1200px;
	 margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
}

.stat-box {

	text-align: center;
   padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);


}

.stat-number {
    font-size: 3rem;
	 font-weight: bold;
        color  :      #4fd1c5;
    margin-bottom: 0.5rem;

}

.stat-label   {
    color:      #cbd5e0;
    font-size    :    1.125rem;
}

.why-different {
   padding: 5rem 20px;
}

.different-container {
   max-width  :      1200px; 
    margin: 0 auto; 
   display: grid; 
   grid-template-columns: 1.2fr 1fr; 
    gap: 3rem; 
    align-items: center;
}

.different-content h2 {
    font-size: 2rem;
  color: #1a202c;
    margin-bottom: 1.5rem;
}

.different-content > p {
  color: #4a5568;
   margin-bottom   :     2rem;
  line-height  :        1.7;
}

.different-points 
 {
  flex-direction   :      column;
 gap  :       1.5rem;
    display: flex;
}

.point-item h4 {
    color   :    #1a202c;
	font-size: 1.25rem;
	margin-bottom: 0.5rem;
}

.point-item p {
  color: #4a5568;
   line-height: 1.7;
}  

.different-image img {

    width: 100%;
  border-radius: 8px;
}

.cta-about   {
  background: #f7fafc;
 padding: 4rem 20px;
}

.cta-about-box {
         max-width: 800px;
  margin: 0 auto;
  text-align: center;
    background  :        #fff;
        padding: 3rem 2rem;
    border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.cta-about-box h2 {
    font-size: 2rem;
  color: #1a202c;
                    margin-bottom: 1rem;
}

.cta-about-box p {
   color: #4a5568;
  font-size: 1.125rem;
	 margin-bottom: 2rem;
}

.cta-about-btn {
   display    : inline-block;
			background: #4fd1c5;
    color  :    #1a202c;
   padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
 font-weight: 600;
        transition: all 0.3s;
}

.cta-about-btn:hover {
                    background    :#38b2ac;
  transform: translateY(-2px);
}

.thankyou-container {
  max-width: 1200px;
	 margin: 4rem auto;
  padding: 0 20px;
  display: grid;
   grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.thankyou-content {
    background : #fff;
    padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);}

.success-icon {
    text-align: center;
   margin-bottom: 2rem;
}


.checkmark-circle 
 {
  width: 100px;
    height: 100px;
    background     : #4fd1c5;
  border-radius: 50%;
    display: inline-flex;
   align-items  :        center;
  justify-content    :    center;
   position: relative;
}

.checkmark {
  width: 40px;
    height     :    25px;
   border-left: 5px solid #fff;
   border-bottom: 5px solid #fff;
  transform: rotate(-45deg);
    margin-top: -8px;
}

.thankyou-content h1 {

	  text-align: center;
    font-size: 2.5rem;
  color: #1a202c;
	margin-bottom: 1rem;


}

.thankyou-message {
   text-align: center;
    font-size: 1.125rem;
  color     :    #4a5568;
	margin-bottom: 2.5rem;
	line-height: 1.7;
}

.next-steps {
  background: #f7fafc;
    padding: 2rem;
	border-radius: 8px;
  margin-bottom: 2rem;
}

.next-steps h3 {
  font-size     :1.5rem;
  color   :      #1a202c;
	margin-bottom: 1rem;
}

.steps-list {
  list-style: none;
   padding: 0;
   margin: 0;
}

.steps-list li {
  color: #2d3748;
    padding: 0.75rem 0 0.75rem 2rem;
  position  :  relative;

}

.steps-list li:before {
  content: "✓";
	position: absolute;
  left: 0;
  color: #4fd1c5;
    font-weight: bold;
        font-size: 1.25rem; 

} 

.thankyou-actions {
    display: flex;
   gap: 1rem;
  justify-content: center;
}

.btn-primary, .btn-secondary {
  padding: 14px 32px;

    text-decoration: none;

   border-radius: 6px;

  font-weight     :   600;

    transition: all 0.3s;

    display: inline-block;
}



.btn-primary {
  background: #4fd1c5;
	   color: #1a202c;
}

.btn-primary:hover    {
     background: #38b2ac;


}

.btn-secondary 
 {
  background: #2d3748;
  color: #fff;
}

.btn-secondary:hover {


    background: #1a202c;
}

.thankyou-sidebar
{
  display: flex; 
	    flex-direction  :     column; 
	 gap   :    1.5rem;
}

.info-card {
    background: #fff;
    padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	
}

.info-card h4 {
	 font-size     :1.125rem;
    color: #1a202c;
    margin-bottom: 0.75rem;
}

.info-card p {
	color: #4a5568;
   line-height: 1.6;
    margin-bottom: 0.5rem;
}

.phone-link     {
		display: inline-block;
    color: #4fd1c5;
  font-weight: 600;
	font-size:       1.25rem;
    text-decoration: none;
    transition: color 0.3s;
     }

.phone-link:hover {
   color: #38b2ac;
}

.benefits-quick {
	 list-style: none;
  padding: 0;
    margin: 0;
}

.benefits-quick li {
  padding: 0.5rem 0 0.5rem 1.5rem;
   color: #2d3748;
  position: relative;
}

.benefits-quick li:before {
    color: #4fd1c5;
    position     :     absolute;
  content: "•";
  font-weight     : bold;
    left: 0;
}

.explore-more {
    background  :        #f7fafc;
   padding: 4rem 20px;
}

.explore-more h2 {
    text-align: center;
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 2.5rem;
}

.services-quick   {
   max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap:     1.5rem;
}

.service-quick-card {
	  background: #fff;
   padding: 1.5rem;
	border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	transition: transform 0.3s;
     }

.service-quick-card:hover  
  {


  transform: translateY(-3px);

}

.service-quick-card h3 {
					font-size: 1.25rem;
      color: #1a202c;
  margin-bottom: 0.75rem;
}

.service-quick-card p {
   color   :   #4a5568;
    line-height: 1.6;


}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-container,
    .expertise-wrapper,
    .different-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 20px;
    }
    
    .about-hero-content h1 {
        font-size: 1.75rem;
    }
    
    .thankyou-content {
        padding: 2rem 1.5rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
}