* {


    padding: 0;
   box-sizing :       border-box;
   margin: 0;
     }



body {
	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
         line-height: 1.6;
    color: #333;
	}

.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;
    width: auto;
}

.navigation-links {
    display: flex;
  list-style: none;
    gap: 2.5rem;
}

.navigation-links a {

    color: white;
	text-decoration: none;
   font-weight: 500;
  transition: color 0.3s ease;
    position: relative;


}

.navigation-links a:hover {
        color: #f0f0f0;
}

.navigation-links a::after    {
  content: '';
  position: absolute;
   bottom: -5px;
    left: 0;
 width :0;
                    height: 2px;
  background-color: #fff;
        transition: width 0.3s ease;
}

.navigation-links a:hover::after {
      width: 100%;


}

.menu-toggle {
      display: none;
    flex-direction: column;
	cursor:      pointer;
  gap: 4px;
}

.hamburger-line {
   width: 25px;
   height: 3px;
   background-color: white;
	 transition: 0.3s;
}

.hero-area {
  padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	
}

.hero-content {
  max-width: 1200px;
   display: grid;
    align-items: center;
   grid-template-columns: 1fr 1fr;
  margin: 0 auto;
    gap: 4rem;

}

.hero-content h1


{
   font-size: 3.2rem;
	font-weight: 700;
   color:    #2c3e50;
		margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-description {
   font-size: 1.3rem;
    color: #5a6c7d;
   margin-bottom: 2.5rem;
    line-height: 1.7; 

}

.action-buttons {
               display: flex;
          gap: 1.5rem;
}

.primary-button, .secondary-button {
    padding: 15px 30px;
  border-radius: 8px;
   text-decoration: none;
   font-weight :      600;
   transition: all 0.3s ease;
 display: inline-block;
}

.primary-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border: none;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.secondary-button     {

  background: transparent;
   color: #667eea;
 border: 2px solid #667eea;
	}

.secondary-button:hover {
    background: #667eea;
  color: white;
	
}

.hero-image {
   width: 100%;
            height: auto;
      border-radius: 12px;
     box-shadow: 0 15px 35px rgba(0,0,0,0.1);


}

.benefits-showcase {
  padding: 80px 2rem;
   background: white;
}

.container-fluid {
			max-width:    1200px;
       margin: 0 auto;
}

.benefits-showcase h2 {
    text-align: center;
   font-size: 2.8rem;
    color: #2c3e50;
  margin-bottom: 3rem;
                    font-weight: 700;
}

.benefits-grid {


  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2.5rem;

}

.benefit-card {
    border-radius: 12px;
	text-align: center;
  transition: transform 0.3s ease;
   border-left: 4px solid #667eea;
   padding: 2.5rem;
  background: #f8f9fa;
}

.benefit-card:hover {
  transform: translateY(-5px);

	  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.benefit-card h3 {

  font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom   : 1rem;
  font-weight: 600;


}

.services-overview {
    padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.content-wrapper {
    max-width: 1200px;
  margin: 0 auto;
}

.services-overview h2 {
  text-align: center;
   font-size  :  2.8rem;
  color: #2c3e50;
	margin-bottom :       3rem;
   font-weight: 700;
}

.services-layout {
   display: flex;
                    flex-direction: column;
   gap: 3rem;
}

.service-item     {
	 display: grid;
   grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
  background: white;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   align-items: center;
}

.service-item:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.service-item:nth-child(even) .service-image {
   order: 2;
}

.service-image {
  width: 100%;
   height :250px;
   object-fit    :  cover;
   border-radius: 8px;
}

.service-details h3 {
	font-size: 1.8rem;
      color: #2c3e50;
       margin-bottom: 1rem;
      font-weight: 600;
}

.service-details p {
    line-height: 1.6;
	font-size: 1.1rem;
    color: #5a6c7d;
   margin-bottom: 1.5rem;
}

.feature-list {
	    padding: 0;
  list-style: none;
	}

.feature-list li {
   padding: 8px 0;
  color: #667eea;
  font-weight: 500;
    position: relative;
               padding-left: 25px;
}

.feature-list li::before {
  content: '✓';
  position: absolute;
   left: 0;
  color   :  #667eea;
    font-weight   :     bold;
}

.call-to-action-area {
    padding: 80px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.cta-container  {
    max-width: 1200px;
  margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.cta-content h2 {
    margin-bottom: 1.5rem;
   font-size: 2.5rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
    margin-bottom: 2rem;
  line-height: 1.7;
    opacity: 0.9;
}

.cta-button {

	                    background: white; 
	   padding : 18px 35px; 
	   display  :     inline-block; 
	   text-decoration  :    none; 
	  transition: all 0.3s ease; 
	   font-weight: 600; 
	    color: #667eea; 
		 border-radius: 8px;



}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.2);
}

.cta-image {
   width: 100%;
    height: auto;
   border-radius: 12px;
     }

.webinar-section   {
  padding: 80px 2rem;
    background: white;
}

.webinar-container {
  max-width: 1200px; 
	    margin: 0 auto;
}

.webinar-section h2 {
    text-align: center;
   font-size: 2.8rem;
    color: #2c3e50;
   margin-bottom: 3rem;
   font-weight   :       700; 
	
}

.events-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}  

.event-card {
   background: #f8f9fa;
    padding: 2.5rem;
  border-radius: 12px;
    border-top     :        4px solid #667eea;
   transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.event-card h3    {
    font-size: 1.4rem;
    color: #2c3e50;
   margin-bottom: 1rem;
  font-weight: 600;
}

.event-date {
  color: #667eea;
    margin-bottom: 1rem;
  font-weight: 600;
    font-size: 1rem;
}

.testimonials-area {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.testimonials-wrapper {
	    max-width: 1000px;
   margin: 0 auto;
    text-align: center;
}

.testimonials-area h2   {
   font-size    : 2.8rem;
	    color: #2c3e50;
	    margin-bottom: 3rem;
	    font-weight: 700;
}

.testimonial-slider {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
   gap: 2.5rem;
}

.testimonial-item {
   background: white; 
  padding: 2.5rem; 
  border-radius: 12px; 
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #5a6c7d;
  margin-bottom: 1.5rem;
 font-style: italic;
}

.testimonial-author strong {
   color: #2c3e50;
  font-size   :  1.1rem;
	
}

.testimonial-author span   {
   font-size: 0.9rem;
    margin-top: 5px;
     color  : #667eea;
   display: block;
}

.contact-section {
 padding: 80px 2rem; 
	  background    :white;
}

.contact-wrapper{
  max-width: 1200px;
     margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap  : 4rem;
}

.contact-info h2 {
  font-size   :    2.5rem;
  color: #2c3e50;
   margin-bottom: 1.5rem;
   font-weight    :700;
	
}

.contact-info p {
    line-height: 1.7;
   color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-details {
   display   :        flex;
	  flex-direction: column;
	   gap: 1.5rem;
}

.contact-item h4 {
  color: #667eea;
   font-size: 1.1rem;
    margin-bottom: 0.5rem;
	 font-weight: 600;
}

.contact-item p {
  color: #2c3e50;
    margin: 0;
}  

.consultation-form {
   background: #f8f9fa;
       padding: 2.5rem;
    border-radius: 12px;
}

.form-row {
  display: grid;
          grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;}

.input-group		{
    display    :      flex;
	flex-direction: column;
}


.input-group label {

	  color: #2c3e50;

    font-weight     :      600;

    margin-bottom: 8px;

	font-size: 0.9rem;


}

.input-group input,
.input-group select,
.input-group textarea {
  padding: 12px 15px;
  border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    border: 1px solid #ddd;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-button {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
   padding: 15px 30px;
   border: none;
   border-radius: 8px;
	font-size: 1.1rem;
   font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  width: 100%;
    margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);}

.site-footer {
   background: #2c3e50;
   color: white;
	padding: 60px 2rem 30px;
}

.footer-content {
  max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-logo {
   height: 40px;
   width: auto;
    margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-branding p {
  color:        #bbb;
    line-height: 1.6;
}

.footer-navigation h4,
.footer-legal h4,
.footer-contact h4 {
  color: white;
   margin-bottom: 1rem;
  font-weight: 600;
}

.footer-navigation ul,
.footer-legal ul {
        list-style: none;
}

.footer-navigation li,
.footer-legal li {
  margin-bottom: 8px; 
	
}

.footer-navigation a,
.footer-legal a {
    color: #bbb;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-navigation a:hover,
.footer-legal a:hover {
  color: white;
}

.footer-contact p {
                    color: #bbb;
  margin-bottom: 8px;
}

.footer-bottom {
   text-align: center;
     margin-top: 2rem;
   padding-top: 2rem;
  border-top: 1px solid #444;
  color: #bbb;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .navigation-links {
        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-links.active {
        left: 0;
    }
    
    .navigation-links li {
        margin: 1rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .action-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-item:nth-child(even) .service-image {
        order: 0;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 0 1rem;
    }
    
    .hero-area {
        padding: 100px 1rem 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .benefits-showcase,
    .services-overview,
    .call-to-action-area,
    .webinar-section,
    .testimonials-area,
    .contact-section {
        padding: 60px 1rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
    }
}.active-link {
    color: #f0f0f0 !important;
    font-weight: 600;
}

.about-hero {
	    padding: 120px 2rem 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   text-align    :        center;

}

.about-hero-content h1 {
       font-size: 3.5rem;
   font-weight: 700;
   margin-bottom:  1rem;
	

}

.hero-subtitle {
          font-size: 1.4rem;
  opacity: 0.9;
   max-width: 600px;
   margin: 0 auto;
   line-height: 1.6;
}

.company-story {
   padding: 80px 2rem;
    background: white;
}

.story-container {
   max-width: 1200px;
    margin: 0 auto;
  display: grid;
        grid-template-columns: 2fr 1fr;
    gap:  4rem;
    align-items: center;

}  

.story-content h2 {
    font-size: 2.8rem;
    color: #2c3e50;
  margin-bottom: 2rem;
 font-weight  :        700;
}

.story-content p {
   font-size   :      1.1rem;
    line-height: 1.8;
  color: #5a6c7d;
 margin-bottom: 1.5rem; 

}

.mission-vision {
  display: grid;
    grid-template-columns: 1fr 1fr;
 gap: 2rem;
  margin-top:        3rem;
}

.mission-block, .vision-block {
  background: #f8f9fa;
  padding    :       2rem;
    border-radius: 8px;
	border-left: 4px solid #667eea;
}

.mission-block h3, .vision-block h3 {
    color  :        #2c3e50;
   font-size: 1.3rem;
   margin-bottom: 1rem;
    font-weight: 600;
}

.story-photo {
    width: 100%;
  height: 400px;
    object-fit: cover;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-expertise {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.expertise-wrapper {
    max-width    :1200px;
    margin: 0 auto;

}

.team-expertise h2 {
       text-align: center;
  font-size: 2.8rem;
  color: #2c3e50;
	margin-bottom: 3rem;
   font-weight: 700;
	
}

.expertise-grid {
   display : grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap     :    2rem;
}

.expertise-item {
  background: white;
    padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition    :    transform 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
}

.expertise-item h3 {
    font-size: 1.4rem;
  color: #2c3e50;
	 margin-bottom: 1rem;
   font-weight: 600;
}

.expertise-item p {
  color :    #5a6c7d;

	   line-height: 1.7;
}

.methodology-section {
  padding: 80px 2rem;
  background   :    white;
}

.methodology-container {
   max-width: 1200px;
    margin: 0 auto;
    display: grid;
               grid-template-columns: 1fr 1fr;
  gap: 4rem;
   align-items    :center;
}

.methodology-text h2 {
   font-size: 2.8rem;
   color: #2c3e50;
  margin-bottom: 2rem;
   font-weight: 700;
}

.methodology-text p {
   font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.approach-pillars {
    display: flex;
	flex-direction: column;
    gap: 2rem;
}

.pillar {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
   border-left     :        4px solid #667eea;

}

.pillar h4 {
         color: #2c3e50;
   font-size: 1.2rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.pillar p {
  color: #5a6c7d;
    line-height: 1.6;
	margin: 0;
}

.methodology-image {
  width: 100%;
    height: 450px;
    object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.achievements-stats {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.achievements-stats h2 {
  font-size     :        2.8rem;
  margin-bottom: 3rem;
    font-weight: 700;
}

.stats-grid {

	       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem; 
	


}

.stat-item {
  padding: 2rem; 
    text-align: center;
}

.stat-number {
	 font-size: 3.5rem;
    font-weight     :        700;
  color: white;
  margin-bottom: 1rem;
}


.stat-label {
    font-size: 1.1rem;
  opacity: 0.9;
    font-weight: 500;
}

.values-section {
  padding: 80px 2rem;
   background: white;
	
}

.values-wrapper {
		max-width: 1200px;
   margin: 0 auto;
}

.values-section h2 {
   text-align  :  center;

	   font-size: 2.8rem;

	  color: #2c3e50;

	   margin-bottom: 3rem;

	   font-weight   :      700;
}

.values-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
   -webkit-transition: transform 0.3s ease;
    background: #f8f9fa;
  -moz-border-radius: 12px;
  padding: 2.5rem;
	border-radius: 12px;
    text-align: center;
                    border-top: 4px solid #667eea;
       transition: transform 0.3s ease;
}

.value-card:hover  
  {


  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);


}

.value-card h3 
 {
        color: #2c3e50;
  font-size: 1.4rem;
  margin-bottom: 1rem;
   font-weight: 600;
}  

.value-card p {
    color: #5a6c7d;
	line-height:     1.7;
}

.thankyou-page {
   min-height: 80vh;
    padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thankyou-container


{
  max-width: 900px;
  margin: 0 auto;
}

.success-content {
   background: white;
   padding: 3rem;
   border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align: center;
}

.success-icon {
    margin-bottom: 2rem;
}

.checkmark-circle {
   width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
   display :  flex;
   align-items: center;
    justify-content: center;
   margin: 0 auto;
   animation: scaleIn 0.5s ease-out;
}

.checkmark {
    width: 30px;
  height     :        20px;
    border: 3px solid white;
   border-top: none;
    border-right     :        none;
  transform: rotate(-45deg);
  animation  :checkmarkDraw 0.8s ease-out 0.3s both;
}@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

@keyframes checkmarkDraw {
    from {
        opacity: 0;
        transform: rotate(-45deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
}.thankyou-title {
    font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 1.5rem;
    font-weight: 700;
}



.thankyou-message {
   font-size: 1.2rem;
  color: #5a6c7d;
   line-height: 1.7;
  margin-bottom: 3rem;
	
}

.next-steps {
       margin-bottom: 3rem;
    text-align: left;}

.next-steps h2 {
  font-weight: 600;

   margin-bottom: 2rem;

    color: #2c3e50;

    font-size: 1.8rem;

    text-align: center;
}

.steps-grid    {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;


}

.step-item {
   display: flex;
               align-items: flex-start;
	gap: 1rem; 

}

.step-number {
    width: 40px;
         height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
	 border-radius: 50%;
  display: flex;
    align-items: center;
    justify-content: center;
	font-weight: 700;
	font-size: 1.1rem;
   flex-shrink: 0;
}

.step-content h3 {
   color: #2c3e50;
   font-size: 1.1rem;
   margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-content p {
     margin: 0;
               line-height: 1.6;
   color: #5a6c7d;
}

.additional-resources


{
    margin-bottom: 3rem;
   text-align: left;
}

.additional-resources h2 {
  font-size: 1.8rem;
   color: #2c3e50;
   margin-bottom: 1rem;
  text-align: center;
   font-weight   :   600;
}

.additional-resources > p {
  text-align: center;
               color: #5a6c7d;
    margin-bottom: 2rem; 
	
}

.resource-cards {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;


}

.resource-card {
   background: #f8f9fa;
  padding: 2rem;
   border-radius    :   12px;
  text-align: center;
   transition: transform 0.3s ease; 
	
}

.resource-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.resource-image {
     width: 100%;
   height: 150px;
    object-fit: cover;
  border-radius    :   8px;
  margin-bottom: 1rem;
}

.resource-card h3 {
   color: #2c3e50;

	    font-size: 1.2rem;

	  margin-bottom: 1rem;

	   font-weight: 600;
}

.resource-card p {
	color: #5a6c7d;
  line-height: 1.6;
}

.contact-reminder {
       background: #f8f9fa;
   padding: 2rem;
   border-radius: 12px;
   margin-bottom    :2rem;
  border-left: 4px solid #667eea;
}

.contact-reminder h3 {

   color: #2c3e50;
   font-size: 1.3rem;
    margin-bottom: 1rem;
               font-weight: 600;
	}

.contact-reminder p {
  color: #5a6c7d;
   margin-bottom: 1rem;
}

.emergency-contact {
   background: white;
  padding: 1.5rem;
    border-radius: 8px;
  margin-top: 1rem;
}

.emergency-contact p {
        color :  #2c3e50;
        margin-bottom: 0.5rem;
   font-weight: 500;

}



.action-buttons {


	 display: flex;
    gap: 1.5rem;
  justify-content: center;
    flex-wrap: wrap;
	}

.primary-return-btn, .secondary-return-btn {
     padding: 15px 30px; 
	   border-radius: 8px; 
	  text-decoration: none; 
	   font-weight: 600; 
	   transition: all 0.3s ease; 
		display: inline-block;
     }

.primary-return-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.primary-return-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.secondary-return-btn {
      background: transparent;
   color: #667eea;
 border: 2px solid #667eea;

}

.secondary-return-btn:hover {
   background: #667eea;
	color: white;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .methodology-container {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-content {
        grid-template-columns: 1fr;
    }
    
    .success-content {
        padding: 2rem;
    }
    
    .thankyou-title {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-cards {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 1rem 60px;
    }
    
    .company-story,
    .team-expertise,
    .methodology-section,
    .achievements-stats,
    .values-section {
        padding: 60px 1rem;
    }
    
    .thankyou-page {
        padding: 100px 1rem 60px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}