*  
  {
    margin: 0;
  padding   :  0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
  color: #333;
   background-color: #f8f9fa;

}

.content-wrapper {
   max-width: 1200px;
   margin   :0 auto;
    padding:   0 20px;
}

.main-navigation {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
	 padding: 1rem 0;
    position: fixed;
	width: 100%;
   top: 0;
   z-index   :   1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); 

}

.nav-container{
    max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
   display: flex;
        justify-content: space-between;
     align-items: center;
}

.company-logo {

    height     :  45px;
  width: auto;


}

.nav-menu {
  display: flex;
    list-style     :    none;
  gap: 2rem;
}

.nav-menu a {
   color: white;
	text-decoration: none;
   font-weight: 500;
    transition: color 0.3s ease;
    padding :        0.5rem 1rem;
          border-radius: 5px;
}

.nav-menu a:hover {
  color: #74b9ff;
  background-color: rgba(255,255,255,0.1);
}

.burger-menu {
    display: none;
   flex-direction: column;
   cursor: pointer;
    gap: 4px;
}

.burger-menu span {
   width: 25px;

	   height :      3px;

	   background-color: white;

	 transition    :      0.3s;
}

.hero-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 8rem 0 4rem;
  margin-top: 70px;
}

.hero-banner .content-wrapper {
  grid-template-columns: 1fr 1fr;
    gap :       3rem;
   display: grid;
   align-items: center;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-text p {
   font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
   padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
    display    :   inline-block;
}

.primary-btn {
                    background-color: #e74c3c;
   color :    white;
}

.primary-btn:hover {
  transform: translateY(-2px);
  background-color: #c0392b;
}

.secondary-btn {

  background-color: transparent;
   color: white;
	 border: 2px solid white;
     }

.secondary-btn:hover {
       background-color: white;
  color: #667eea;
}

.hero-image img		{
  width: 100%;
   height: auto;
	 border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}


.services-overview {
  padding: 5rem 0;
    background-color: white;
}

.services-overview h2     {
   text-align: center;
  font-size : 2.5rem;
  margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;


}

.service-card {
    background: white;
        border-radius  :     12px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card img {
   width: 100%;
    height: 200px;
   object-fit: cover; 

}

.service-card h3 {
  font-size :   1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {


  padding: 0 1.5rem 1.5rem;
    color: #666;
   line-height: 1.6; 

	}

.business-growth {
	padding: 5rem 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.growth-content {
                    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.growth-text h2     {
    font-size: 2.3rem;
  margin-bottom: 1.5rem; 
	
}

.growth-text p    {
  font-size: 1.1rem; 
	   margin-bottom    :        2rem; 
	    opacity: 0.9;
}

.benefits-list {
  list-style: none;
  padding-left:       0;
}

.benefits-list li {
  padding: 0.5rem 0;
   position     : relative;
    padding-left: 2rem;
}

.benefits-list li:before {
  content: "✓";
   position:     absolute;
   left: 0;
      color: #00ff7f;
   font-weight: bold;
   font-size: 1.2rem;
}

.growth-image img {
	width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-section {
    padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    text-align: center;
}

.cta-content h2 {
               font-size    :   2.2rem;
   margin-bottom: 1.5rem;
}

.cta-content p{
   font-size: 1.1rem;
               margin-bottom: 2.5rem;
  max-width: 600px;
       margin-left: auto;
	margin-right  :      auto;
    opacity: 0.9;
}

.cta-button {
    background-color: #e74c3c;
  color: white;
    -moz-transition: all 0.3s ease;
    padding: 1.2rem 2.5rem;
  text-decoration: none;
   border-radius     : 8px;
    font-weight: 600;
  font-size: 1.1rem;
   -o-transition: all 0.3s ease;
   transition: all 0.3s ease;
   display: inline-block;
}



.cta-button:hover {
	background-color: #c0392b;
  transform: translateY(-2px);
}

.contact-section {
    padding: 5rem 0;
   background-color: #f8f9fa;
}

.contact-section h2 {
  text-align: center;
     font-size    :    2.5rem;
  margin-bottom: 3rem;
          color: #2c3e50;
}

.contact-content {

	   display: grid;
	grid-template-columns: 1fr 2fr;
   gap     :      3rem;


}

.contact-info h3 {
    font-size: 1.5rem;
   margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
	 margin-bottom: 2rem;
}

.contact-item strong {
   color: #3498db;

	    display: block;

	  margin-bottom     :   0.5rem;
}

.contact-form {
   background: white;
    padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
   display: block;
	 margin-bottom    :     0.5rem;
   font-weight: 600;
  color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 0.8rem;
   border: 2px solid #e0e0e0;
   border-radius   : 6px;
    font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
    border-color:      #3498db;

}

.submit-btn {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
   color: white;
    padding    :1rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
	font-weight: 600;
  cursor: pointer;
	transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {

  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);}

.site-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
   padding   :   3rem 0 1rem;
}

.footer-content {
	max-width :     1200px;
   margin: 0 auto;
   padding: 0 20px;
   display   : grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 2rem;
}

.footer-logo     {
	   height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-section h4 {
  margin-bottom :    1rem;
  color: #74b9ff;
}

.footer-section ul {
	         list-style: none;

}

.footer-section ul li {
   margin-bottom :        0.5rem;


}

.footer-section a {
   color :#bdc3c7;
	text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #74b9ff;
}

.footer-bottom {
   border-top: 1px solid #34495e;
   margin-top: 2rem;
  padding: 1rem 0;
  text-align: center;
   color: #95a5a6;

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
        flex-direction: column;
        padding: 1rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .hero-banner .content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .growth-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .services-overview h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .primary-btn,
    .secondary-btn,
    .cta-button {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 8rem 0 4rem;
  margin-top: 70px;
} 

.about-hero .content-wrapper {
   display: grid;
   grid-template-columns: 2fr 1fr;
    gap: 3rem;
   align-items: center;
}

.hero-content h1 {


   line-height: 1.2;
    margin-bottom: 1.5rem;
  font-size: 2.6rem;
     }

.hero-content p {
   font-size: 1.1rem;
  opacity: 0.9;
  line-height     :1.7;
}

.hero-visual img {
    width: 100%;
    height: auto;
  border-radius    :15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.mission-section     {
   padding: 5rem 0;
	background: white;
}  

.mission-grid {

	   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;


}

.mission-text h2 {
 font-size: 2.3rem;
    margin-bottom: 2rem;
    color     : #2c3e50;

}

.mission-text p {
    font-size: 1.1rem;
  line-height: 1.7;
   margin-bottom: 1.5rem;
   color: #555;
}

.mission-image img {

	    width:   100%;
   	 height: auto;
      border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.1);}

.values-section {
	padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color   :     white;
	
}

.values-section h2 {
	   text-align: center;
		font-size: 2.4rem;
   margin-bottom: 3rem;


}

.values-grid {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap   : 2rem;
}

.value-item {
  background: rgba(255,255,255,0.1);
   padding:        2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
   transition: transform 0.3s ease;
     }

.value-item:hover {
  transform: translateY(-5px);
}

.value-header h3 {
	 font-size: 1.4rem;
    margin-bottom: 1rem;
  color: #74b9ff;
}

.value-item p 
 {
  line-height :       1.6;
    opacity:     0.9;
}

.methodology-section {
    padding: 5rem 0;
   background: #f8f9fa;
}

.methodology-content {
   display: grid;
   grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: flex-start;

}

.method-image img {
   width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.method-text h2 {
   font-size: 2.2rem;
  margin-bottom: 1.5rem;
   color: #2c3e50;
}

.method-text p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
   color: #555;
               line-height: 1.6;
}

.methodology-steps  
  {
  space-y   :     1.5rem;
}

.step-item     {
  display: flex;
   align-items: flex-start;
    gap: 1.5rem;
   margin-bottom: 2rem;
  padding: 1.5rem;
  background: white;
    border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.step-number

{
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
   color: white;
    width: 45px;
      height: 45px;
  border-radius: 50%;
    display: flex;
    align-items: center;
   justify-content: center;
   font-weight: bold;
               font-size: 1.1rem;
   flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
   margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #666;
    line-height: 1.5;
   margin: 0;
} 

.experience-section {
  padding: 5rem 0;
   background: white;
}

.experience-section h2 {
    text-align: center;
         font-size: 2.4rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
} 

.experience-card {

   display  :   flex;
   flex-direction: column;
   background: white;
  border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
     }

.experience-card:hover {
  transform: translateY(-8px);
  -moz-transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
}

.experience-image img {


  width: 100%;
   height: 220px;
  object-fit: cover;


     }

.experience-content {
  padding: 2rem;
}

.experience-content h3     {
   font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
} 

.experience-content p {
   color :        #666;
  line-height   :  1.6;
}

.achievements-section {
               padding   :        4rem 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.achievements-section h2 {
        text-align: center;
   font-size:     2.3rem;
  margin-bottom: 3rem;
}

.achievements-stats {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding  :    1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
      display: block;
  margin-bottom: 0.5rem;
   color: #00ff7f;
}

.stat-label {
  font-size     :  1.1rem;
	opacity: 0.9;
}

.approach-section {
   padding: 5rem 0;
    background: #f8f9fa;


}

.approach-content h2 {
    font-size: 2.3rem;
   margin-bottom: 2rem;
   color: #2c3e50;
   text-align   :     center;
}

.approach-content > p {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
	 color: #555;
    max-width: 800px;
  margin-left: auto;
    margin-right: auto;


}

.approach-highlights {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.highlight-item {
    background: white;
        padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left     :   4px solid #3498db;

}

.highlight-item h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color:      #2c3e50;
}

.highlight-item p {
    color :     #666;
  line-height: 1.6;
}

.contact-cta {
   padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color   : white;
   text-align: center;
}

.contact-cta h2
{
   font-size :        2.2rem;
    margin-bottom: 1.5rem;
}

.contact-cta p {

	    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
   max-width    :      600px;
   margin-left  :auto;
   margin-right: auto;


}

.thankyou-hero {
  background: linear-gradient(135deg, #00c9ff 0%, #92fe9d 100%);
                    color :       white;
  padding: 8rem 0 4rem;
   margin-top: 70px;
   text-align   : center;
	
}

.thank-content h1 {
  font-size: 2.8rem;
    margin-bottom: 1.5rem;
	margin-top: 2rem;
}

.lead-text {
       font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
   margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
}

.checkmark-circle {
  width: 80px;

   height: 80px;

    border-radius: 50%;

  background: rgba(255,255,255,0.2);

    margin: 0 auto;

	position: relative;

  backdrop-filter: blur(10px);
}

.checkmark {

       position: absolute;
        top: 50%;
   left: 50%;
  transform: translate(-50%, -50%);
   width: 25px;
   height: 40px;


}

.checkmark:before
	{
  content: '';
    position: absolute;
                    width: 3px;
  height: 18px;
	background: white;
   left: 11px;
    top: 18px;
  transform: rotate(45deg);
}

.checkmark:after {
  content: '';
   position:    absolute;
  width: 3px;
  height: 12px;
   background: white;
  left   :     6px;
    top: 25px;
  transform: rotate(-45deg);
}

.next-steps {
    padding: 5rem 0;
	background: white;
}

.next-steps h2 {
  text-align: center; 
    font-size: 2.4rem; 
   margin-bottom: 3rem; 
 color: #2c3e50;
}

.steps-timeline {
          max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
	display: flex;
  align-items: flex-start;
   gap : 2rem;
    margin-bottom    :3rem;
   position: relative;
}  

.timeline-item:not(:last-child):after {
  content: '';
  position: absolute;
	 left: 25px;
  top: 60px;
  width: 2px;
    height: 50px;
   background: #e0e0e0;
}

.timeline-marker {
    flex-shrink: 0;
}

.step-num {
    width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
  font-weight: bold;
   font-size: 1.2rem;

} 

.timeline-content h3 {
  font-size :       1.4rem;
    margin-bottom :       0.8rem;
    color: #2c3e50;
}

.timeline-content p {
  color: #666;
   line-height: 1.6;
  margin-bottom: 0.8rem;
}

.timeline-duration {
  color: #3498db;
  font-weight   :        600;
  font-size: 0.9rem;
}

.quick-tips {
  padding: 5rem 0;
	background: #f8f9fa;
}

.quick-tips h2 {
   text-align: center;
	  font-size: 2.2rem;
	  margin-bottom: 1.5rem;
	    color     :     #2c3e50;
}

.section-intro     {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom     : 3rem;
  color: #555;
     max-width    :  700px;
  margin-left: auto;
  margin-right: auto;
}

.tips-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
	
}

.tip-card {
        background: white;
    padding: 2rem;
          border-radius: 12px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
}

.tip-icon {
   margin-bottom: 1.5rem;
}

.icon-bg {
  width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
	display   :flex;
    align-items:        center;
  justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
	 margin: 0 auto;

}

.tip-card h3 {


   font-size    :      1.3rem;
   margin-bottom: 1rem;
  color   :       #2c3e50;
     }

.tip-card p {
    color: #666;
   line-height: 1.6;
}

.while-waiting {
     padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;


}

.waiting-content {
  display    :  grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
    align-items: center;
}

.waiting-text h2 {
  font-size: 2.2rem;

	    margin-bottom:    1.5rem;
}



.waiting-text p {
   line-height: 1.6;
   font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.learn-more-btn     {

    font-weight    :  600;
  margin-top: 1rem;
 transition: all 0.3s ease;
    background: white;
   text-decoration: none;
  border-radius:      8px;
   padding: 1rem 2rem;
  display: inline-block;
  color: #667eea;
	}

.learn-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.waiting-visual img {
	  width     :    100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
     }

.contact-reminder {
   padding    :        4rem 0;
   background: white; 
	
}

.reminder-box {
    background: #f8f9fa;

                    padding: 2.5rem;

  border-radius  :  12px;

    text-align: center;

	border: 2px solid #e0e0e0;
}

.reminder-box h3 {
  font-size: 1.5rem;
    margin-bottom: 1rem;
  color: #2c3e50;
}

.reminder-box p {
    font-size: 1.1rem;
       margin-bottom: 2rem;
    color   :      #666;

}

.contact-details {
  display: flex; 
	    justify-content: center; 
		gap: 3rem; 
	    flex-wrap: wrap;
}

.contact-item {
  text-align: left;
}

.contact-item strong {
        color: #3498db;
   display: block;
   margin-bottom: 0.3rem;
}

.contact-item span {
    color: #555;
   font-size: 1.1rem;
}

.return-navigation {
    padding: 3rem 0;
               background: #f8f9fa;
  text-align: center;
}

.nav-buttons {
    display: flex;
         gap  :1.5rem;
    justify-content: center;
  flex-wrap    : wrap;
}

.nav-button {
   padding :    1rem 2rem;
    text-decoration: none;
  border-radius: 8px;
  font-weight     :        600;
  transition: all 0.3s ease;
    display :   inline-block;
}

.nav-button.primary {
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: white;
	
}

.nav-button.secondary {
   background: transparent;
    color: #3498db;
  border: 2px solid #3498db;
     }

.nav-button:hover {
  transform: translateY(-2px);
}

.nav-button.primary:hover {
     box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);

}

.nav-button.secondary:hover {
    background: #3498db;
  color: white;
}@media (max-width: 768px) {
    .about-hero .content-wrapper,
    .mission-grid,
    .methodology-content,
    .waiting-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1,
    .thankyou-hero h1 {
        font-size: 2.2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-item:not(:last-child):after {
        display: none;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }
    
    .thankyou-hero h1 {
        font-size: 2rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-button {
        width: 100%;
        max-width: 300px;
    }
    
    .achievements-stats {
        grid-template-columns: 1fr;
    }
}.pol {
    margin: 5% 15%;
}