* {
  margin     :  0;
  padding   :  0px;
               box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height :       1.6;
  color: #2c3e50;
   background: #fff;
	
}

.main-header {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: fixed;
  width: 100%;
   top: 0;
    z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}  

.nav-container {
    max-width: 1200px;
   margin   :    0 auto;
  display: flex;
   justify-content: space-between;
    align-items: center;
   padding: 0.8rem 2rem;
}

.brand-logo {
  height: 45px;
               width :  auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color :  white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px; 
	
}

.nav-links a:hover {
  color: #ffd700;
}

.menu-toggle {
   display: none;
  flex-direction: column;
        cursor: pointer;
   gap     :       4px;
}

.burger-line {
   width: 25px;
  height: 3px;
   background: white;
   transition: 0.3s;
}

.content-wrapper {
	 margin-top     :      80px;
}

.hero-banner {

  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   padding: 100px 0;
   min-height  : 90vh;
   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-text h1 {
      font-size: 3.2rem;
  color: white;
  margin-bottom: 1.5rem;
   font-weight: 700;
	line-height: 1.2;


}

.hero-description {

   font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
	 margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
   flex-wrap: wrap;
}

.primary-button {

	    background: #fff;
  color :        #764ba2;
    padding: 15px 30px;
   text-decoration   :     none;
	border-radius: 50px;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
	}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.secondary-button {
    background: transparent;
       color: white;
  padding :     15px 30px;
  text-decoration: none;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 600;
				 transition     :   all 0.3s ease;

}

.secondary-button:hover {
  background: white;
          color: #764ba2;
}

.hero-visual img {
  width: 100%;
	 height: auto;
    border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.services-overview {
   padding: 100px 0;
  background: #f8f9fa;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
  padding: 0 2rem;
}

.services-overview h2 {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 3rem;
   font-size : 2.8rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
   margin-top: 3rem;
}

.service-card {
 background: white;
   padding: 2.5rem;
   border-radius: 15px;
   text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
  width: 100%;
         height: 200px;
  object-fit: cover;
			border-radius: 10px;
         margin-bottom: 1.5rem;
}

.service-card h3	{
  font-size: 1.5rem;
   margin-bottom    :      1rem;
    color: #764ba2;
}

.service-card p {
   color: #666;
       line-height: 1.6;
}

.methodology-section {
   padding: 100px 0;
    background: white;
}

.methodology-container {
   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: 2rem;
   color: #2c3e50;

}

.methodology-steps {
   display: flex;
    flex-direction: column;
    gap: 2rem;
	
}

.step-item {
   display: flex;
	align-items: flex-start;
   gap: 1.5rem;
}

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  width: 50px;
    height: 50px;
   border-radius: 50%;
   display     :     flex;
   align-items   :   center;
    justify-content: center;
				 font-weight: bold;
  flex-shrink :        0;
}

.step-item h4
	{
    font-size  :    1.3rem;
   margin-bottom: 0.5rem;
	 color: #764ba2;
}

.step-item p {
   color: #666;
    line-height: 1.6;

}  

.methodology-visual img {
  width     :    100%;
      height: auto;
    border-radius    :    15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.cta-section

{
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	    padding: 80px 0;
	  text-align:    center;
}

.cta-wrapper
	{
  max-width: 800px;
   margin: 0 auto;
   padding: 0 2rem;
}

.cta-content h2 {
   color: white;
   margin-bottom: 1.5rem;
    font-size :     2.5rem;
	
}

.cta-content p {
  font-size: 1.2rem; 
  color: rgba(255,255,255,0.9); 
    margin-bottom: 2.5rem; 
    line-height: 1.7;
}

.cta-button {
    background    :       white;
    color: #4facfe;
  padding: 18px 40px;
   text-decoration: none;
   border-radius: 50px;
  font-weight:   600;
   font-size: 1.1rem;
    transition: all 0.3s ease;
   display: inline-block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-button:hover  {
  transform: translateY(-3px);
  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 {
  color: #666;
   margin-bottom: 2.5rem;
  line-height: 1.7;
    font-size: 1.1rem;
}

.contact-details {

	  display: flex;
    flex-direction     :    column;
    gap: 1.5rem;

}

.contact-item h4 {
  color: #764ba2;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
  color: #666;
    line-height: 1.6;
}

.contact-form {
  background: white;
	 padding: 2.5rem;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
    margin-bottom: 0.5rem;
  color:     #2c3e50;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
      padding: 12px 15px;
    border: 2px solid #e1e1e1;
        border-radius: 8px;
   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    :    #764ba2;
}

.submit-button {
  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-button:hover {

	  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(118, 75, 162, 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     :     1fr 2fr;
    gap: 3rem;
}

.footer-brand p  {
      margin-top: 1rem;
  color: #bdc3c7;

}

.footer-logo
	{
		height: 40px;
  width: auto;
  filter: brightness(0) invert(1);

}

.footer-links {
   display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap:    2rem;
}

.footer-column h4 {
   margin-bottom: 1rem;
   color  :        #ecf0f1;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
	    margin-bottom: 0.5rem;
     }

.footer-column a {
  color: #bdc3c7;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-column a:hover {
   color: #ecf0f1;
}

.footer-bottom {
    border-top: 1px solid #34495e;
       margin-top: 2rem;
  padding-top: 1.5rem;
  text-align     :   center;
  color:        #bdc3c7;
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-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;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0.8rem 1rem;
    }
    
    .section-container,
    .hero-content,
    .methodology-container,
    .contact-container,
    .footer-content {
        padding: 0 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-overview h2,
    .methodology-content h2,
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}.nav-links a.active     {
   color: #ffd700;
   font-weight: 600;
}

.about-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding : 120px 0 80px;
	 text-align: center;
   color: white;
}

.about-hero-content


{
    max-width: 800px;
    margin: 0 auto;
        padding: 0 2rem;
}

.about-hero h1		{

    font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;


}

.about-subtitle {
   font-size: 1.3rem;
     line-height: 1.6;
       opacity: 0.9;
}

.company-story {
    padding :       100px 0;
  background    : #f8f9fa;
}

.story-container {
    max-width: 1200px;
   margin: 0 auto;
  padding: 0 2rem;
        display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content h2 {
  font-size: 2.5rem;
    margin-bottom: 2rem;
 color: #2c3e50;
}

.story-content p {
   font-size: 1.1rem;
  line-height: 1.7;
   color: #666;
   margin-bottom: 1.5rem;
}

.story-visual img	{
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}



.team-expertise {
   padding: 100px 0;
    background: white;
}

.expertise-container {
   max-width: 1200px;
	margin: 0 auto;
   padding: 0 2rem;
}

.team-expertise h2 {
	    text-align: center;
	  font-size: 2.8rem;
	    margin-bottom: 3rem;
	  color: #2c3e50;

}

.expertise-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.expertise-card {
  transition: transform 0.3s ease;
       border-radius: 15px;
       background     :        #f8f9fa;
      padding :      2.5rem;
     text-align: center;
}

.expertise-card:hover {
  transform: translateY(-10px);
}

.expertise-icon {
   margin-bottom:   1.5rem;
}

.icon-wrapper {
  width: 80px;
   height: 80px;
          margin: 0 auto;
  border-radius: 50%;
   display: flex;
   align-items: center;
    justify-content: center;
}

.strategy-icon {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.coaching-icon {
  background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.growth-icon {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.expertise-card h3 {
	margin-bottom: 1rem;
  font-size: 1.5rem;
	color: #764ba2;
}

.expertise-card p {
               color: #666;
	  line-height: 1.6;
}  

.methodology-deep {
  padding: 100px 0;
	background: #f8f9fa;
}

.methodology-deep-container {
    max-width: 1200px;
    margin: 0 auto;
   padding    :0 2rem;
  display  :    grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.methodology-visual-large img {
    width: 100%;
   height: auto;
   border-radius:      15px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.methodology-details h2 {
  font-size: 2.5rem;
	margin-bottom: 2rem;
  color: #2c3e50;
}

.methodology-features {
    display: flex;
  flex-direction: column;
    gap :      2rem;
}

.feature-item h4     {
    font-size: 1.3rem;
	margin-bottom: 0.8rem;
  color: #764ba2;

}

.feature-item p {
  color   :    #666;
  line-height: 1.6;
}

.achievements-section {
  padding: 100px 0;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

  text-align:   center;

   color: white;
}

.achievements-container {
    max-width: 1200px;
  margin: 0 auto;
  padding  : 0 2rem;
}

.achievements-section h2 {
  font-size: 2.8rem;
   margin-bottom: 3rem;
}

.stats-grid {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.stat-item {
  padding: 1.5rem;


}

.stat-number {
    font-size     :    3rem;
 font-weight: 700;
    margin-bottom   :0.5rem;
   color: #ffd700;
}

.stat-label {
   font-size :      1.1rem;
  opacity  :  0.9;
}

.approach-section {
                    padding: 100px 0;
    background: white;
}

.approach-container {
  max-width:    1200px;
         margin: 0 auto;
   padding: 0 2rem;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
               align-items: center;
}

.approach-content h2 {
         font-size     :       2.5rem; 
  margin-bottom: 1.5rem; 
  color: #2c3e50;
}

.approach-content > p {
  font-size: 1.1rem;
  line-height    :      1.7;
   color    :        #666;
    margin-bottom: 2rem;
}

.approach-principles {
    gap: 1.5rem;

   display: flex;

    flex-direction: column;
}

.principle-item h4 {
    margin-bottom: 0.5rem;
  font-size: 1.2rem;
   color: #764ba2;
}

.principle-item p {
  line-height: 1.6;
  color: #666;
}

.approach-visual img {
 width: 100%;
      height: auto;
       border-radius  :      15px;
     box-shadow: 0 15px 40px rgba(0,0,0,0.15);


}

.training-section {
   padding   :100px 0;
   background: #f8f9fa;
}

.training-container


{
	max-width: 1200px;
  margin  :      0 auto;
    padding    :      0 2rem;
  text-align: center;
}

.training-section h2 {
   font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;


}

.training-intro {
     font-size: 1.2rem;
  color: #666;
    margin-bottom   :      3rem;
  max-width: 600px;
   margin-left: auto;
       margin-right: auto;
}

.training-visual-wrapper {
               margin-bottom: 3rem;
}

.training-visual-wrapper img {
  width: 100%;
   max-width: 600px;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.training-programs 
 {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  text-align: left;
	} 

.program-item     {
  background   :    white;
   padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
	
}

.program-item h4 {
   font-size: 1.3rem;
	margin-bottom: 1rem;
                    color: #764ba2;
}

.program-item p {
    color: #666;
  line-height    :1.6;
}

.thankyou-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  padding: 120px 0;
  text-align: center;
  color: white;
    min-height: 60vh;
   display: flex;
   align-items: center;
}

.thankyou-container {
  max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.success-icon {
    margin-bottom: 2rem;
}

.checkmark-wrapper {
  width: 100px;
   height: 100px;
  margin:    0 auto;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
				 align-items: center;
  justify-content: center;
   position    :      relative;
}



.checkmark {
  width: 40px;
  height: 20px;
   border-left: 4px solid white;
    border-bottom: 4px solid white;
  transform: rotate(-45deg);
   animation: checkmarkAnimation 0.6s ease-in-out;
}@keyframes checkmarkAnimation {
    0% {
        transform: rotate(-45deg) scale(0);
    }
    100% {
        transform: rotate(-45deg) scale(1);
    }
}.thankyou-hero h1 {
		 font-size: 3rem;
   margin-bottom: 1.5rem;
  font-weight: 700;
}

.thankyou-message {
  font-size: 1.2rem;
    line-height: 1.7;
    opacity: 0.9;
}

.next-steps {

	        padding: 100px 0;
  background: #f8f9fa;
     }

.steps-container {
  max-width: 1000px;
   margin: 0 auto;
    padding: 0 2rem;
}

.next-steps h2 {
   text-align: center;
    font-size: 2.8rem;
  margin-bottom: 3rem;
    color: #2c3e50;

}

.steps-timeline {
  position :relative;
}

.steps-timeline::before {
  content: '';
	position: absolute;
  left: 40px;
          top: 0;
  bottom   :0;
		width: 2px;
    background    : #667eea;
}

.timeline-item {

		display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
    position: relative;
     }

.timeline-marker {
  width: 80px;
	height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
   display :        flex;
   align-items: center;
	justify-content: center;
	 margin-right: 2rem;
    position  :   relative;
  z-index: 2;
	
}

.timeline-number {
   color: white;
  font-size: 1.5rem;
   font-weight: 700;
}

.timeline-content h3 {
   font-size: 1.5rem;
   margin-bottom: 0.8rem;
  color:#764ba2;
	}

.timeline-content p {
  color: #666;
    line-height: 1.6;
  margin-bottom: 0.5rem;
}

.timeline-duration {
       font-weight: 600;
  color: #667eea;
  font-size: 0.9rem;
}

.preparation-tips {

	  padding: 100px 0;
   background: white;
	}

.tips-container {
  max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
               display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items :  center;
	
}

.tips-content h2 
 {
	 font-size: 2.5rem;
  margin-bottom: 2rem;
   color   :#2c3e50;
} 

.tips-grid {
       display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.tip-card {
    background: #f8f9fa;
    padding: 1.5rem;
   border-radius: 10px;
    border-left: 4px solid #667eea;
}

.tip-card h4 {
   font-size: 1.2rem;
   margin-bottom: 0.8rem;
  color   :      #764ba2;
}

.tip-card p {
   color: #666;
  line-height: 1.6; 

}

.tips-visual img {
   width  :       100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.resources-section {
   padding: 100px 0;
   background: #f8f9fa;
}

.resources-container
	{
    max-width: 1200px;
   margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.resources-section h2 {
    font-size: 2.8rem;
    margin-bottom  :      1.5rem;
    color: #2c3e50;
}

.resources-intro {
  font-size :  1.2rem;
  color: #666;
	 margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
       margin-right: auto;
}

.resources-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap    :   3rem;
    align-items: center;
	text-align: left;
}

.resource-visual img {
  width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.resource-list {
   display: flex;
    flex-direction: column;
  gap: 1.5rem;
}

.resource-item {


    background: white;
    padding: 1.5rem;
	 border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);

}

.resource-item h4 {
   font-size: 1.2rem;
   margin-bottom:     0.8rem;
   color: #764ba2;
}

.resource-item p {
   color: #666;
   line-height: 1.6;
}

.emergency-contact {
               padding: 80px 0;
    background: white;
}

.emergency-container {
  max-width: 800px;
    margin: 0 auto;
       padding: 0 2rem;
    text-align: center;
}

.emergency-content h2 {
   font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.emergency-content > p {
         color     :     #666;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}


.emergency-info {
   display   :    grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom  :        2.5rem;
}

.emergency-item 
 {
  background: #f8f9fa;
      padding  :1.5rem;
     border-radius: 10px;
}

.emergency-item h4 {
   font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #764ba2;
}

.emergency-item p {
   color:        #666;
   line-height: 1.6;
}

.home-button {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color :  white;
  padding: 15px 30px;
   text-decoration: none;
   border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.home-button:hover {


  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-container,
    .methodology-deep-container,
    .approach-container,
    .tips-container,
    .resources-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .training-programs {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .timeline-marker {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .steps-timeline::before {
        display: none;
    }
    
    .thankyou-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .thankyou-hero h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-info {
        grid-template-columns: 1fr;
    }
}.policySection {
  padding: 80px 2rem;
   background: #f8f9fa;
}

.policyContainer {
  max-width: 800px;
   margin: 0 auto;
  text-align: left;
}

.policyContainer h2 {
	font-size     : 2.5rem;
   color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;
}


.policyContainer p {
	 font-size: 1.1rem;
   margin-bottom: 1.5rem;
					line-height: 1.7;
   color: #7f8c8d;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}