* {
 padding: 0px;
  box-sizing: border-box;
  margin: 0;

}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height:       1.6;
  color: #2c3e50;
   overflow-x: hidden;
}

.main-navigation 
 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding  :      1rem 0;
    position: fixed;
    width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-wrapper {
	    max-width: 1200px;
	   margin: 0 auto;
	   display: flex;
		justify-content: space-between;
	  align-items: center;
	    padding    :     0 2rem;


}

.company-logo	{
    height: 45px;
     filter: brightness(0) invert(1);
}

.navigation-items {
	display: flex;
          list-style: none;
         gap: 2.5rem;
}

.navigation-items a {
    color: white;
    text-decoration: none;
   font-weight   :       500;
    transition: color 0.3s ease;
   padding: 0.5rem 1rem;
      border-radius: 25px;
  transition: all 0.3s ease;
}



.navigation-items a:hover		{
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.mobile-toggle    {
   cursor: pointer;

   flex-direction     :       column;

	 display    :  none;

               gap: 4px;
}

.mobile-toggle span


{
	width: 25px;
   height: 3px;
     background: white;
  transition: 0.3s;
    border-radius: 2px;
}

.hero-banner {
	 margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color  :      white;
    min-height: 70vh;
   display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
   grid-template-columns     :       1fr 1fr;
	gap   :     4rem;
  align-items: center;
   padding: 0 2rem;
}

.hero-banner h1 {
    font-weight: 700;
   margin-bottom: 1.5rem;
  font-size: 3.2rem;
    line-height: 1.2;
}

.hero-description {
   font-size:   1.2rem;
    margin-bottom: 2.5rem;
   opacity: 0.95;
    line-height: 1.7;
}

.action-buttons {
  display: flex; 
	   gap: 1.5rem;
}

.primary-btn, .secondary-btn {
	padding  :    15px 30px;
   border-radius: 50px;
    -webkit-border-radius: 50px;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
   font-weight: 600;
  transition: all 0.3s ease;
  display :       inline-block;
}

.primary-btn {
    background: white;
    color: #f5576c;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);

} 

.secondary-btn {

  background: transparent;
   color: white;
	 border: 2px solid white;
     }

.secondary-btn:hover {
  background: white;
 color: #f5576c;
  transform: translateY(-3px);


}

.hero-visual img {
	width: 100%;
	 border-radius:    20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: perspective(1000px) rotateY(-5deg);
   transition: transform 0.5s ease;
}

.hero-visual img:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

.benefits-overview {
    padding: 100px 0;
   background: #f8f9fa;
}

.benefits-container {
         max-width: 1200px;
          margin: 0 auto;
   padding: 0 2rem;
   text-align: center;
	}

.benefits-container h2 {
  font-size: 2.5rem;
   margin-bottom :       3rem;
    color: #2c3e50;
}

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2.5rem;
  margin-top:3rem;
}

.benefit-card {
  background: white;
   padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top   :     4px solid #667eea;
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.benefit-card h3 {
  font-size: 1.5rem;
   margin-bottom: 1rem;
   color: #667eea;
}

.services-showcase {
   padding     :        100px 0;
  background: white;
}

.services-wrapper {
   max-width: 1200px;
        margin: 0 auto;
   padding: 0 2rem;
}

.services-wrapper h2 {
   text-align: center;
   font-size: 2.5rem;
    margin-bottom   :  4rem;
  color  :#2c3e50;
}

.services-layout {

	   display: flex;
  flex-direction  :     column;
  gap: 4rem;
     }

.service-item {
	display   :grid;
    grid-template-columns: 1fr 1fr;
    gap :     3rem;
  align-items: center;
    padding: 2rem;
   border-radius: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition : all 0.3s ease;
}

.service-item:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.service-item:nth-child(even)
	{

       grid-template-columns: 1fr 1fr;
     }

.service-item:nth-child(even) img {
   order: 2;
}

.service-item:nth-child(even) .service-details {
   order: 1;


}

.service-item img {
      width: 100%;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
   color: #667eea;
}

.service-details p {
      line-height: 1.7;
   font-size: 1.1rem;
    margin-bottom: 1.5rem;
	}

.service-details ul {
	list-style: none;
    padding-left: 0; 
	
}

.service-details li {


	padding: 0.5rem 0;
   position: relative;
   padding-left: 1.5rem;

}

.service-details li:before {
  content: "✓";
  position   :absolute;
  left: 0;
  color: #667eea;
    font-weight: bold;
}

.training-methodology {
    padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.methodology-content {
   max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
  display: grid;
   grid-template-columns  :      1fr 1fr;
    gap: 4rem;
   align-items: center;
}

.methodology-content h2 {
    font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.methodology-content > .method-text > p {
   opacity: 0.9;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.methodology-steps {
	   display: flex;

	  flex-direction: column;

	   gap : 1.5rem;
}

.step-item {
  background: rgba(255,255,255,0.1);
          padding: 1.5rem;
 border-radius: 10px;
  backdrop-filter: blur(10px);
}

.step-item h4    {
   font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
}

.method-visual img {
	width: 100%;
     border-radius     :      20px;
     box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cta-section {
      padding: 80px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    text-align: center;
    color: white;
} 

.cta-wrapper
{

    max-width: 800px;
      margin: 0 auto;
   padding: 0 2rem;}

.cta-wrapper h2 {
  font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-wrapper p {
    font-size: 1.2rem;

	    margin-bottom: 2.5rem;

	  opacity: 0.95;
}

.cta-button {
  background: white;
         color: #f5576c;
  padding: 18px 40px;
   border-radius: 50px;
   text-decoration: none;
    font-weight: 600;
   font-size: 1.1rem;
        display: inline-block;
    transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
     }

.contact-section {
  padding: 100px 0;
    background: #f8f9fa;
}

.contact-container {
    max-width:   1200px;
	margin   : 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-info h2 {
   font-size: 2.5rem;
    margin-bottom: 1.5rem;
   color: #2c3e50;
	}

.contact-info p {
  font-size: 1.1rem;

    margin-bottom: 2rem;

   line-height: 1.7;
}

.info-details {

	   display: flex;
    flex-direction: column;
   gap: 1.5rem;
	}

.info-item h4 {
               color: #667eea;
   margin-bottom: 0.5rem;
   font-size: 1.2rem;
}



.contact-form {
    background: white;
   padding: 3rem;
    border-radius: 20px;
  box-shadow: 0 15px 50px 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: 12px 15px;
   border: 2px solid #e9ecef;
    border-radius: 10px;
       font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 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-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	   color: white;

	  padding:15px 30px;

	          border: none;

	 border-radius    :      50px;

	  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 10px 25px rgba(102, 126, 234, 0.3);


}

.site-footer   {
	background: #2c3e50;

   color     :        white;

  padding: 60px 0 20px;
}

.footer-content {
    max-width     :     1200px;
     margin: 0 auto;
   padding: 0 2rem;
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 3rem;
}

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
  margin-bottom    :        1rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
    color: #667eea;
   font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;


}

.footer-section a {
   color: #bdc3c7;
    text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
   color: white;
}

.footer-bottom {
   text-align: center;
    margin-top: 2rem;
   padding-top: 2rem;
    border-top: 1px solid #34495e;
    color    :     #bdc3c7;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .navigation-items {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .navigation-items.active {
        left: 0;
    }
    
    .navigation-items li {
        margin: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-item {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    .service-item img {
        order: 1 !important;
    }
    
    .service-details {
        order: 2 !important;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .benefits-container,
    .services-wrapper,
    .contact-container {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
}.mobile-toggle.active span:nth-child(1)   {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
	 opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.about-hero {
  margin-top:      80px;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
               text-align: center;
    position  :    relative;
   overflow: hidden;
}

.about-hero::before {
  content: '';
   position: absolute;
   top: 0;
  left: 0;
  right: 0;
   bottom: 0;
  background: rgba(0,0,0,0.1);
    z-index: 1; 

}

.about-hero-content {
  max-width: 800px;
   margin: 0 auto;
                    padding: 0 2rem;
      position:       relative;
    z-index: 2;
}


.about-hero h1 {
   font-size: 3.5rem;
    margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.about-subtitle {
  font-size: 1.4rem;
  opacity: 0.9;
  font-weight    :        300;
    letter-spacing: 0.5px;
}

.company-story {
    padding    :100px 0;
       background: white;
}

.story-container {

	   max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;

}

.story-content {

   display:      grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
	}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
	color:       #2c3e50;
}

.story-text p {
    font-size   :     1.1rem;
  line-height: 1.8;
  margin-bottom:      1.5rem;
   color: #5a6c7d;
}

.story-visual img {
  width     :  100%;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
	transition: transform 0.3s ease;
}

.story-visual img:hover {
  transform: scale(1.05);
}

.mission-values {
  padding: 100px 0;
   background: #f8f9fa;
}

.mission-container {
   max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
    text-align: center;
}

.mission-container h2 {
   font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #2c3e50;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
    margin-top: 3rem;
}

.value-card {
   background: white;
        padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #667eea;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.value-card h3 {
  font-size: 1.5rem;
          margin-bottom: 1rem;
	color :   #667eea;
   font-weight:      600;


}

.value-card p {
  line-height: 1.7;
    color: #5a6c7d;
}

.team-expertise {
  padding: 100px 0;
    background  :      white;


}

.expertise-container {
   max-width: 1200px;
  margin: 0 auto;
  padding     :       0 2rem;
}

.expertise-content {
	 display: grid;
  grid-template-columns     :   1fr 1fr;
     gap: 4rem;
   align-items: center; 
	
}

.expertise-text h2 {
	   font-size: 2.5rem;
 margin-bottom: 1.5rem;
  color:#2c3e50;
     }

.expertise-text p {

    font-size: 1.1rem;
  line-height: 1.8;
    margin-bottom: 2rem;
   color :#5a6c7d;

}

.expertise-highlights {
    display: flex;
    flex-direction: column;
  gap: 1.5rem;
}

.highlight-item {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: white;
    padding :   1.5rem;
               border-radius: 10px;
    text-align: center;
}

.highlight-item h4 {
  font-size: 1.8rem;
    margin-bottom: 0.5rem;
  font-weight: 700;
}

.highlight-item p {
   opacity: 0.9;
   margin: 0;
}

.expertise-visual img {
	width: 100%;
       border-radius: 15px;
     box-shadow: 0 15px 40px rgba(0,0,0,0.15);
} 

.methodology-approach {
               padding: 100px 0;
    background :  #f8f9fa;
}

.approach-container {

	   max-width: 1200px;
   margin: 0 auto;
	padding: 0 2rem;
}

.approach-container h2 {
   text-align: center;
    font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #2c3e50;
}

.approach-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
	
}

.approach-item
{
    background: white;
  border-radius: 20px;
  overflow     :        hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}



.approach-item:hover {
  transform: translateY(-10px);
}

.approach-item img

{
       width: 100%;
  height: 200px;
   object-fit: cover;
     }

.approach-content


{
  padding: 2rem;
}

.approach-content h3 {
   font-size: 1.5rem;
	margin-bottom: 1rem;
   color: #667eea;
}

.approach-content p {
               line-height: 1.7;
	color: #5a6c7d;
}

.company-achievements {
   padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.achievements-container{
    max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
     }

.achievements-container h2 {
  text-align: center;
    font-size: 2.5rem;
      margin-bottom: 4rem;
}

.achievements-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.achievement-stats {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap  :2rem; 
	
}

.stat-item {
   text-align: center;
  background: rgba(255,255,255,0.1);
	padding     :   2rem;
   border-radius: 15px;
  backdrop-filter: blur(10px);
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: #ffd700;
   font-weight   :      700;
}

.stat-item p {
   opacity   : 0.9;
   font-size: 0.9rem;
}

.achievement-text h3 {
  font-size:1.8rem;
   margin-bottom: 1.5rem;
    color: #ffd700;
}

.achievement-text p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
   opacity: 0.9;
}

.thankyou-hero   {
   margin-top: 80px;
   padding: 60px 0 100px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  min-height: calc(100vh - 80px);
}

.thankyou-container {
	       max-width: 1000px;
   margin: 0 auto;
   padding: 0 2rem;
     }

.success-content {
	margin-bottom: 4rem;
  text-align: center;
   color: white;
}

.success-icon {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 100px;
    height: 100px;
  border-radius: 50%;
  background: white;
   margin: 0 auto;
    display: flex;
   align-items: center;
    justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}.checkmark {
  width: 30px;
  height: 20px;
  border: 4px solid #f5576c;
    border-top: none;
    border-right: none;
  transform: rotate(-45deg);
    margin-top: -5px;
}

.success-content h1 {
 font-size: 3rem;
    margin-bottom   :        1.5rem;
  font-weight  :   700;
}

.success-message {
	   line-height: 1.7;
   margin: 0 auto;
   font-size: 1.3rem;
  opacity: 0.95;
   max-width: 700px;


}

.next-steps {
    background: white;
   padding: 3rem;
    border-radius: 20px;
   margin-bottom: 3rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.next-steps h2 {
    text-align: center;
    font-size    :2rem;
  margin-bottom     : 2.5rem;
    color: #2c3e50;
}

.steps-timeline {
  display: flex;
	 flex-direction: column;
	gap: 2rem;
	}

.timeline-item {
       display: flex;
   align-items: flex-start;
	 gap: 1.5rem;
}

.timeline-marker {
  width: 40px;
      height: 40px;
      border-radius: 50%;
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
      display :     flex;
     align-items: center;
       justify-content: center;
     font-weight: bold;
      flex-shrink: 0;
}

.timeline-content h3 {
    font-size: 1.3rem;

	  margin-bottom   : 0.5rem;

	  color: #667eea;
}

.timeline-content p {
   color: #5a6c7d;
   line-height     :       1.6;
}

.additional-resources {
        background: white;
    padding:     3rem;
    border-radius: 20px;
   margin-bottom: 3rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.additional-resources h2 {
    text-align: center;
   font-size :   2rem;
   margin-bottom: 2.5rem;
	color: #2c3e50; 

}

.resource-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.resource-card {
  border: 2px solid #f1f3f4;
  border-radius: 15px;
   overflow: hidden;
   transition: all 0.3s ease;
}

.resource-card:hover   {
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.resource-card img {
	    width     : 100%;
   height: 180px;
   object-fit: cover;
}

.resource-content {
   padding: 1.5rem;
}

.resource-content h3 {
   font-size: 1.2rem;
    margin-bottom: 1rem;
	color   :    #667eea;
}

.resource-content p {

		color: #5a6c7d;
    line-height: 1.6;
                    margin-bottom: 1rem;

}

.resource-link {
  color: #667eea;
    text-decoration: none;
   font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
  color:   #764ba2;
}

.contact-reminder {
   background: white;
         padding: 3rem;
	border-radius: 20px;
	text-align: center;
  margin-bottom: 3rem;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-reminder h2 {
               font-size: 2rem;
    margin-bottom    :      1rem;
   color: #2c3e50;
}

.contact-reminder p		{
  color: #5a6c7d;
	margin-bottom :       1.5rem;
}

.urgent-contact {
	  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color   :   white;
    padding: 2rem;
    border-radius    :    15px;
  display: inline-block;}

.phone-number {
   font-size     :        1.8rem;
  margin-bottom: 0.5rem;
    font-weight: 700;
   display: block;
}

.contact-hours {
    opacity: 0.9;
  margin: 0;


}

.return-actions {


    text-align: center;


     }


.return-actions .action-buttons {
    display: flex;
  gap: 1.5rem;
  justify-content   :center;
   flex-wrap: wrap;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .story-content,
    .expertise-content,
    .achievements-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-stats {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        padding: 0 1rem;
    }
    
    .success-content h1 {
        font-size: 2.2rem;
    }
    
    .success-message {
        font-size: 1.1rem;
    }
    
    .next-steps,
    .additional-resources,
    .contact-reminder {
        padding: 2rem 1.5rem;
    }
    
    .resource-cards {
        grid-template-columns: 1fr;
    }
    
    .return-actions .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .story-container,
    .mission-container,
    .expertise-container,
    .approach-container,
    .achievements-container {
        padding: 0 1rem;
    }
    
    .company-story,
    .mission-values,
    .team-expertise,
    .methodology-approach,
    .company-achievements {
        padding: 60px 0;
    }
    
    .urgent-contact {
        padding: 1.5rem;
    }
    
    .phone-number {
        font-size: 1.5rem;
    }
}.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.benefit-card p {
    font-size  :      1rem;
   line-height :  1.6;
   color: #2c3e50;
}