* {
    margin: 0;
   padding   :  0;
    box-sizing: border-box;
}

body    {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
                    line-height     :   1.6;
   color: #2c3e50;
  background-color:   #ffffff;
}

.content-wrapper{

	    max-width: 1200px;

 margin: 0 auto;

    padding   :       0 20px;

}

.primary-navigation {


  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
   top    : 0;
    width: 100%;
   z-index: 1000;
        border-bottom :        1px solid #e0e6ed;
}

.nav-container {
   max-width: 1200px;
	margin: 0 auto;
          padding: 0 20px;
        display: flex;
   justify-content: space-between;
    align-items: center;
   height: 70px;
}

.brand-section .logo-img {
   height: 45px;
  width    :     auto;
}

.nav-links {
   display: flex;
   gap: 2rem;
}

.nav-item {
    text-decoration: none;
    color: #2c3e50;
  font-weight: 500;
   transition :  color 0.3s ease;
         position  :     relative;
}

.nav-item:hover {
    color: #3498db;
}


.nav-item::after
{
  content: '';
  position: absolute;
          width: 0;
   height: 2px;
                    bottom: -5px;
   left: 0;
   background-color  :#3498db;
  transition: width 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
}

.mobile-menu-trigger {
  display: none;
    flex-direction: column;
    cursor: pointer;
   gap: 4px;
}

.mobile-menu-trigger span {
   width: 25px;
   height: 3px;
    background-color    :     #2c3e50;
    transition: all 0.3s ease;
}

.mobile-nav-overlay     {
  display: none;
   position   : fixed;
   top: 70px;
   left: 0;
    width    :        100%;
  height: calc(100vh - 70px);
  background: rgba(0, 0, 0, 0.8);
     z-index: 999;
}

.mobile-nav-content {
   background: white;
	width: 280px;
    height: 100%;
        padding: 2rem;
  transform: translateX(-100%);
   transition: transform 0.3s ease;
}

.mobile-nav-content.active {
  transform: translateX(0);
}

.mobile-nav-link {
    display    :   block;
  padding: 1rem 0;
  text-decoration: none;
   color: #2c3e50;
  font-weight: 500;
  border-bottom: 1px solid #ecf0f1;
}

.hero-banner  
  {
    margin-top: 70px;
    padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}  

.hero-banner .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.hero-content h1 {
   font-size: 3.2rem; 
	  font-weight: 700; 
	  margin-bottom: 1.5rem; 
	    line-height: 1.2;
}

.hero-subtitle {
    font-size :   1.25rem;
   margin-bottom: 2.5rem;
  opacity    :     0.9;
}

.hero-actions {
   display: flex; 
    gap: 1.5rem;
}

.primary-action-btn, .secondary-action-btn {
    padding: 15px 30px;
    text-decoration: none;
  border-radius: 8px;
    font-weight  :        600;
	transition :all 0.3s ease;
  display: inline-block;
}

.primary-action-btn {
                    background-color: #e74c3c;
    color: white;
}

.primary-action-btn:hover {
  background-color: #c0392b;
  transform: translateY(-2px);
}

.secondary-action-btn {
  background-color: transparent;
	 color: white;
    border   :  2px solid white;
}

.secondary-action-btn:hover 
 {
    color: #667eea;
  background-color: white;
}

.hero-image {
    width: 100%;
   height: 400px;
    object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.services-overview {
  padding: 100px 0;
   background-color: #f8f9fa;
}



.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(350px, 1fr));
    gap: 2.5rem;
     }

.service-card {
    background: white;
    border-radius   : 12px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
     transform: translateY(-8px);


}

.service-img 
 {
    width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
   padding: 1.5rem 1.5rem 0.5rem;

	   font-size: 1.4rem;

	    color: #2c3e50;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color :#7f8c8d;
}



.transformation-process {
  padding: 100px 0;
   background: white;
	
}

.transformation-process .content-wrapper {
   display: grid;
     grid-template-columns: 1fr 1fr;
      gap: 4rem;
     align-items: center;}

.process-content h2 {
    font-size: 2.5rem;
   margin-bottom : 1.5rem;
    color: #2c3e50;
}

.process-content > p {
 margin-bottom    :    3rem;
    font-size : 1.1rem;
    line-height: 1.8;
   color: #7f8c8d;
}

.process-steps
{
    display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-item {

  display: flex;
        align-items: flex-start;
    gap: 1rem;
     }

.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 {
    margin-bottom: 0.5rem;
  color: #2c3e50;
}

.step-item p {

    color: #7f8c8d;
	}

.process-img {
	 height   :    450px;
   border-radius: 12px;
  width :      100%;
  object-fit: cover;
}

.cta-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
     color: white;
    text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom :   1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
  margin-bottom: 2.5rem;
    opacity: 0.9;
   max-width: 600px;
   margin-left: auto;
  margin-right: auto;


}

.cta-button {
     display: inline-block;
    padding: 18px 40px;
  background-color: white;
	color: #e74c3c;
  text-decoration: none;
         border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
    transition     :all 0.3s ease;}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-section
	{
  padding: 100px 0;
  background-color: #f8f9fa;
}

.contact-section h2 {
   text-align: center;
   font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom    :   3rem;
}



.contact-layout {
    display: grid;
   grid-template-columns: 1fr 2fr;
   gap: 4rem;


}

.contact-info h3 {
      font-size: 1.8rem;
   margin-bottom: 2rem;
   color: #2c3e50;
}

.contact-item {
  margin-bottom: 2rem;


}

.contact-item strong {
    color: #2c3e50;
    display: block;
	margin-bottom: 0.5rem;
}

.contact-item p {
    color: #7f8c8d;
    margin: 0;
}

.contact-form     {
   background: white;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-row {

  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
   margin-bottom     :     1.5rem;
     }

.form-group {

    display: flex;
   flex-direction: column;

}

.form-group label {
    margin-bottom: 0.5rem;
   color   :   #2c3e50;
   font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea  
  {
	   padding: 12px;
  border-radius: 6px;
        border   :2px solid #ecf0f1;
  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 {
  width: 100%;

  padding: 15px;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    color :   white;

	border     : none;

   border-radius: 6px;

	font-size :  1.1rem;

    font-weight: 600;

       cursor: pointer;

   transition: all 0.3s ease;
}

.submit-btn:hover {

  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.site-footer {
   background-color: #2c3e50;
  color: white;
       padding     :     3rem 0 1rem;
}



.footer-content {
  max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   display :      grid;
                    grid-template-columns: 1fr 3fr;
  gap:      3rem;
}

.footer-logo {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;

	  color: #ecf0f1;
}

.footer-section p,
.footer-section a {
    color :      #bdc3c7;
  text-decoration: none;
   line-height: 1.6;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
  color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
	 padding-top: 1rem;
    margin-top    :   2rem;
    text-align: center;
   max-width: 1200px;
    margin-left: auto;
	 margin-right: auto;
   padding-left: 20px;
   padding-right: 20px;
    color: #bdc3c7;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-trigger {
        display: flex;
    }
    
    .hero-banner .content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .transformation-process .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 0 15px;
    }
    
    .hero-banner {
        padding: 60px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .services-overview,
    .transformation-process,
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}.nav-item.active {
    color: #3498db;
}

.nav-item.active::after {
  width: 100%;
}

.page-header  {
		margin-top: 70px;
   padding: 60px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
   text-align: center;
}

.header-content h1 {
    font-size: 3rem;
   font-weight: 700;
   margin-bottom  :     1rem; 

}

.header-subtitle {
   font-size: 1.2rem;
    opacity :       0.9;
  max-width: 600px;
   margin: 0 auto; 
	
}

.company-story {
    padding: 100px 0;
  background: white;
}

.story-layout {

	   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 {


               margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #7f8c8d;
  font-size: 1.1rem;
	}

.story-highlights {
       display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap :    2rem;
    margin-top: 2.5rem;
}

.highlight-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8f9fa;
   border-radius: 8px;
}

.highlight-item strong {
	    font-size: 2rem;
         display: block;
    color: #e74c3c;
   font-weight :   700;
  margin-bottom: 0.5rem;

}

.highlight-item span	{
   color: #7f8c8d; 
		font-size: 0.9rem;


}

.story-image {
    width: 100%;
	 height: 400px;
    object-fit: cover;
  border-radius: 12px;

}

.methodology-section {
 padding: 100px 0;
   background: #f8f9fa;
}

.methodology-section h2 {
	 text-align: center;
  font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #2c3e50;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
	}

.method-card
{
  background: white; 
	   padding :       2rem; 
	    border-radius: 12px; 
	   text-align: center; 
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
	   transition: transform 0.3s ease;
}

.method-card:hover {


  transform: translateY(-8px);}

.method-icon {
   margin-bottom     :    1.5rem;
}

.icon-circle  {
    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;
}

.method-card h3 {
      margin-bottom: 1rem;
   color: #2c3e50;
    font-size: 1.3rem;
	}

.method-card p {
	    color: #7f8c8d;
    line-height: 1.6; 

}

.values-mission {

	                    padding: 100px 0;
    background: white;

}

.values-layout {
   display: grid;
    grid-template-columns    :     1fr 1fr;
   gap: 4rem;
    align-items: flex-start;
}

.mission-content h2	{

      font-size: 2.5rem;
  margin-bottom: 2rem;
    color: #2c3e50;


}

.mission-text h3

{
     font-size: 1.4rem;
   margin-bottom: 1rem;
    color    :   #2c3e50;
}

.mission-text p {
  margin-bottom: 2rem;
 line-height: 1.8;
    color: #7f8c8d;
}

.values-list h3 {
	font-size: 1.4rem;
   margin-bottom: 1rem;
    color: #2c3e50;
}

.values-list ul {
   list-style: none;
        padding: 0;
	}

.values-list li {
    margin-bottom: 1rem;
  padding-left: 1.5rem;
	 position: relative;
    color: #7f8c8d;
}

.values-list li::before {
     content: '▶';
     position: absolute;
  left: 0;
  color :#3498db;
  font-size: 0.8rem;
	}

.values-list strong {
    color: #2c3e50;
}

.values-image {
    height: 500px;
  border-radius: 12px;
   object-fit: cover;
   width: 100%;
}

.expertise-areas {
  padding: 100px 0;
    background:        #f8f9fa;
}

.expertise-areas h2
	{
          margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
}

.expertise-container  
  {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
}

.expertise-img {
  height: 450px;
   width: 100%;
   border-radius: 12px;
    object-fit: cover;
}

.expertise-items

{
	    display: flex;
  flex-direction: column;
	gap: 2rem;
}

.expertise-item {
    padding: 1.5rem;
  background: white;
    border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.expertise-item h4 {
	    margin-bottom: 0.8rem;
    color   :     #2c3e50;
  font-size :        1.2rem;
}

.expertise-item p {
  color: #7f8c8d;
  line-height: 1.6;
}

.approach-philosophy {
    padding: 100px 0;
        background: white;
}

.philosophy-content h2 {
       text-align: center;
	 font-size: 2.5rem;
	margin-bottom  :      3rem;
 color: #2c3e50;
}

.philosophy-text {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center; 
	
}

.philosophy-text p {
   margin-bottom: 1.5rem;
	    line-height: 1.8;
	    color: #7f8c8d;
	   font-size: 1.1rem;
}


.philosophy-visual  
  {
  text-align    :      center;
}

.philosophy-img {
   width: 100%;
  object-fit :cover;
    border-radius: 12px;
  height:400px;
    max-width: 600px;
     }

.testimonials-section {
   padding: 100px 0;
    background: #f8f9fa;
}

.testimonials-section h2 {
    text-align: center;
   font-size: 2.5rem;
   margin-bottom :  3rem;
	color: #2c3e50;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.testimonial-card {
    background: white;
   padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-content p     {
  font-style: italic;
	margin-bottom:1.5rem;
    color: #7f8c8d;
    line-height: 1.6;
  font-size: 1.1rem;
}

.testimonial-author strong {
    display: block;
   color: #2c3e50;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
   color: #95a5a6;
   font-size: 0.9rem;}

.training-experience {
  padding    :  100px 0;
  background    :      white;
}

.training-layout {
          display: grid;
          grid-template-columns: 1fr 1fr;
	gap: 4rem;
   align-items: center;
}

.training-content h2 {
	   font-size: 2.5rem;
    margin-bottom   :      1.5rem;
   color: #2c3e50;


}

.training-content > p {
  line-height: 1.8;
         color     : #7f8c8d;
   font-size :1.1rem;
	margin-bottom: 2.5rem;
}

.training-features {
  display: flex;
  flex-direction     :column;
    gap: 1.5rem;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
  color: #2c3e50;
}

.feature-item p {
   color: #7f8c8d; 
   line-height: 1.6;
}

.training-img {
  -moz-border-radius: 12px;
  width: 100%;
    -webkit-border-radius: 12px;
	height: 450px;
   object-fit: cover;
  border-radius: 12px;
}

.thankyou-hero {
  margin-top :  70px; 
	   padding: 80px 0; 
	  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%); 
	    color: white; 
	  text-align: center;
}

.thankyou-content {
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
}

.checkmark-circle {
    width: 120px;
 height: 120px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
 display: flex;
   align-items: center;
  justify-content     :   center;
    margin: 0 auto;
    position: relative;
}

.checkmark {
    width: 40px;
    height: 20px;
    border-left: 4px solid white;
    border-bottom: 4px solid white;
  transform: rotate(-45deg);
}

.thankyou-content h1 {
                    font-size: 3rem;
   margin-bottom: 1.5rem;
  font-weight: 700;

}

.thankyou-subtitle {

	   font-size: 1.3rem;
	   margin-bottom: 3rem;
	   opacity: 0.9;
	  line-height   :        1.6; 

}

.next-steps {
    margin: 4rem 0;
   text-align: left;
}

.next-steps h2 {
  text-align: center;
    font-size :      2rem;
   margin-bottom: 2.5rem;
}

.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;
  background: rgba(255, 255, 255, 0.1);
         padding: 1.5rem;
  border-radius: 8px;
}

.step-number


{


    background: white;
  color     :     #27ae60;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display :        flex;
    align-items: center;
   justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
     }

.step-content h3 {


   margin-bottom: 0.5rem;
   font-size: 1.1rem;
}

.step-content p {
   font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

.thankyou-actions {
  display: flex;
  gap   :  1.5rem;
   justify-content     :   center;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
   padding: 15px 30px;
   text-decoration: none;
    border-radius: 8px;
	font-weight: 600;
  transition: all 0.3s ease;
   display   :  inline-block;
}

.primary-button  {
    background-color: white;
   color: #27ae60;
}

.primary-button:hover {
  background-color: #ecf0f1;
  transform: translateY(-2px);
}

.secondary-button {
   background-color: transparent;
   color: white;
  border: 2px solid white;
}

.secondary-button:hover {
	 background-color:  white;
          color: #27ae60;
}

.what-to-expect {
  padding: 100px 0;
   background: #f8f9fa;
}

.expect-layout {


    display: grid;
	 grid-template-columns: 1fr 1fr;
         gap: 4rem;
	align-items: center;


}

.expect-content h2 {
   font-size: 2.5rem;
    margin-bottom: 2rem;
   color: #2c3e50;
}

.expectations-list {
	  display: flex;

	  flex-direction: column;

	  gap: 1.5rem;

}

.expectation-item {
  padding: 1.5rem;
    background: white;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.expectation-item h4
	{


	color: #2c3e50;
    font-size: 1.2rem;
   margin-bottom: 0.8rem;


}

.expectation-item p {
               color: #7f8c8d;
   line-height: 1.6;
	
}

.expect-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
    border-radius: 12px;
}

.immediate-resources {
  padding: 100px 0;
    background: white;
}

.immediate-resources h2 {

	   text-align: center;
  font-size  :       2.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.resources-intro		{
   text-align: center;
    max-width     : 600px;
    margin: 0 auto 3rem;
  color: #7f8c8d;
	font-size: 1.1rem;
  line-height: 1.6;
}

.resources-grid{

         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	 gap: 2rem;
	}

.resource-card {
    background: #f8f9fa; 
  border-radius: 12px; 
   overflow: hidden; 
    transition: transform 0.3s ease;
} 

.resource-card:hover {

  transform: translateY(-5px);}

.resource-img {


  width: 100%;
   height: 200px;
   object-fit    :    cover;

}

.resource-content {
    padding   :1.5rem;
}

.resource-content h3 {
    margin-bottom: 1rem;
   color: #2c3e50;
    font-size   :  1.3rem;
}

.resource-content p {
  color  :      #7f8c8d;
    line-height: 1.6;
}


.emergency-contact
	{
   padding  :      80px 0;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	color :        white;
    text-align: center;
}

.emergency-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem; 

}

.emergency-content > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
               opacity: 0.9;
     max-width: 600px;
   margin-left     :       auto;
    margin-right: auto;
}

.emergency-details {
   display: flex;
    justify-content: center;
  gap: 3rem;
   flex-wrap: wrap;
}

.emergency-details .contact-item {
               text-align: center;
}

.emergency-details .contact-item strong {
   display: block;
   font-size:  1.2rem;
  margin-bottom: 0.5rem;
}

.emergency-details .contact-item p {
         font-size: 1.1rem;
    opacity: 0.9;
}@media (max-width: 768px) {
    .story-layout,
    .values-layout,
    .expertise-container,
    .training-layout,
    .expect-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .emergency-details {
        flex-direction: column;
        gap: 1.5rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-header,
    .thankyou-hero {
        padding: 40px 0;
    }

    .company-story,
    .methodology-section,
    .values-mission,
    .expertise-areas,
    .approach-philosophy,
    .testimonials-section,
    .training-experience,
    .what-to-expect,
    .immediate-resources,
    .emergency-contact {
        padding: 60px 0;
    }

    .header-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }

    .story-content h2,
    .methodology-section h2,
    .mission-content h2,
    .expertise-areas h2,
    .philosophy-content h2,
    .testimonials-section h2,
    .training-content h2,
    .expect-content h2,
    .immediate-resources h2,
    .emergency-content h2 {
        font-size: 2rem;
    }
}.policySection {
    padding: 80px 2rem;
	    background    :   #f8f9fa;
}

.policyContainer	{
	text-align: left;

	     margin :     0 auto;

	 max-width: 800px;
}

.policyContainer h2 {
  font-size: 2.5rem;
  color   :#2c3e50;
   margin-bottom: 1.5rem;
   font-weight    :     700;
}

.policyContainer p {
    color: #7f8c8d;

   margin-bottom: 1.5rem;

    line-height: 1.7;

  font-size   : 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}