*


{
    margin: 0;
   padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
   color: #2c3e50;
    background: #ffffff;
}

.primary-navigation {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position   :       fixed;
    top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
   max-width: 1200px;
	margin: 0 auto;
  display: flex;
   justify-content: space-between;
         align-items: center;
  padding: 1rem 2rem;
}

.brand-section .company-logo {
  height: 45px;
    width     :        auto;
}

.nav-links     {
    display     :        flex;
    gap: 2rem;

}

.nav-item {
    text-decoration: none;
	color   :     #34495e;
  font-weight: 500;
    transition     :        color 0.3s ease;
  position: relative;
}

.nav-item:hover, .nav-item.active {
  color: #27ae60;
}

.nav-item.active::after {
  content: '';
   position:   absolute;
    bottom: -5px;
    left     :      0;
   width: 100%;
   height  :     2px;
  background: #27ae60;
}

.mobile-toggle {
	display :     none;
   flex-direction: column;
       background: none;
  border    :   none;
   cursor: pointer;
    padding: 0.5rem;
}

.burger-line {
   width: 25px;

	  height: 3px;

	    background: #34495e;

		 margin: 3px 0;

	    transition: 0.3s;
}

.mobile-navigation {
  display: none;
    background: white;
    padding:  1rem 2rem;
  border-top: 1px solid #ecf0f1;
}

.mobile-nav-item {
       display :       block;
    padding: 0.8rem 0;
   text-decoration: none;
    color     :      #34495e;
   border-bottom: 1px solid #ecf0f1;
     }

.hero-banner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); 
  padding: 120px 0 80px; 
    min-height: 100vh; 
  display: flex; 
	align-items: center;
}

.hero-content {
    max-width: 1200px;
         margin: 0 auto;
  padding: 0 2rem;
   display: grid;
          grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: center;
}

.hero-text h1 {
   font-size: 3.2rem;
   font-weight: 700;
  color: #2c3e50;
   margin-bottom: 1.5rem;
    line-height: 1.2; 

}

.hero-subtitle {
   font-size: 1.3rem;
   color  :   #6c757d;
	 margin-bottom: 2rem;
}

.hero-actions {
	display    :      flex;
	gap: 1rem;
   flex-wrap: wrap;
}

.primary-button, .secondary-button {
     padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
   font-weight     :600;
               transition: all 0.3s ease;
  display: inline-block; 
	
}

.primary-button {
  background: #27ae60;
    color: white;
}

.primary-button:hover {
  background   :   #229954;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.secondary-button {
  background   :        transparent;
         color: #27ae60;
    border  :  2px solid #27ae60;
}

.secondary-button:hover {
  background: #27ae60;
    color: white;
  transform: translateY(-2px);
}

.hero-image img {
  width: 100%;
	  height: auto;
	    border-radius: 12px;
	  box-shadow: 0 10px 30px rgba(0,0,0,0.15); 
	
}

.content-wrapper {
  max-width: 1200px;
   margin   :  0 auto;
  padding    :0 2rem;
}


.introduction-segment {
    padding: 80px 0;
    background: white;
}  

.introduction-segment h2 {
	font-size: 2.5rem;
	text-align: center;
 margin-bottom: 2rem;
    color: #2c3e50;
}

.introduction-segment > .content-wrapper > p {
        font-size     :1.2rem;
   text-align: center;
    max-width: 800px;
  margin    :        0 auto 3rem;
	color: #6c757d;
}

.features-grid 
 {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;
  margin-top: 3rem;
}

.feature-box  {
   background: #f8f9fa;
   padding: 2rem;
    border-radius: 12px;
   text-align: center;
  transition  :     transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-box h3 {
  color: #27ae60;
    margin-bottom: 1rem;
   font-size :1.3rem; 

}

.offerings-section {
    padding: 80px 0;
        background: #f8f9fa;
}

.offerings-section h2    {
   font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
    color: #2c3e50;
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-item {
  background: white;
    border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
                    transition: transform 0.3s ease;
}

.service-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-item img {
   width: 100%;
	height: 250px;
		 object-fit: cover;
}

.service-item h3 {
                    padding: 1.5rem 1.5rem 0;
	color: #2c3e50;
   font-size: 1.4rem;
}

.service-item p {
    padding: 1rem 1.5rem;
   color: #6c757d;
  line-height: 1.6;
}

.service-details {
   padding    :      0 1.5rem 1.5rem;
    display: flex;
  gap: 1rem;
}

.service-details span {
   background    :    #27ae60;
    color: white;
    padding: 0.3rem 0.8rem;
      border-radius: 20px;
   font-size: 0.85rem;
}


.cta-segment {
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 80px 0;
 color: white;
  display: grid;
    grid-template-columns: 1fr 1fr;
  align-items: center;
  gap    :   3rem;
   max-width: 1200px;
  margin :       0 auto;
}

.cta-content {
  padding-left: 2rem;
	
}

.cta-content h2 {


       font-size: 2.3rem;
    margin-bottom: 1.5rem;

}

.cta-content p	{
  font-size: 1.2rem;
   margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
      background    :      white;
    color: #27ae60;
    padding: 1rem 2rem;
   text-decoration: none;
 border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.cta-visual {
	  padding-right: 2rem;
	}

.cta-visual img {
  width: 100%;
  height: auto;
    border-radius: 12px;
}

.methodology-overview {

  padding: 80px 0;
    background: white;

}

.methodology-overview h2 {
	  font-size: 2.5rem;
   text-align: center;
    margin-bottom: 3rem;
   color    :#2c3e50;


     }

.methodology-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 2rem;
}

.step-item {
   text-align: center;
		padding: 2rem 1rem;
}

.step-number {
  width:        60px;
   height: 60px;
    background: #27ae60;
  color: white;
  border-radius: 50%;
   display: flex;
    align-items: center;
        justify-content: center;
	 font-size: 1.5rem;
   font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-item h3 {
    color: #2c3e50;
  margin-bottom: 1rem;
   font-size: 1.2rem;
}  

.step-item p {
   color: #6c757d;
   line-height: 1.6;
}

.contact-section {
   padding: 80px 0;
         background: #f8f9fa;
}

.contact-section h2 {
	text-align: center;
  margin-bottom: 3rem;
  color: #2c3e50;
     font-size: 2.5rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.contact-info h3 {
 color: #2c3e50;
    margin-bottom: 2rem;
  font-size: 1.4rem;
}

.info-item {
  margin-bottom: 1.5rem;
}

.info-item strong {
    color: #27ae60;
  display: block;
       margin-bottom: 0.5rem;
}

.contact-form {
        background: white;
   padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);

}

.form-group {
  margin-bottom: 1.5rem;

}

.form-row	{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.half-width {
    margin-bottom: 1.5rem;
}



.form-group label  
  {
    display: block;
    margin-bottom: 0.5rem;
   color:  #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
        width: 100%;
    padding :0.8rem;
  border  :      2px solid #e9ecef;
  border-radius: 6px;
         font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus     {
   outline: none;
  border-color: #27ae60;
}

.submit-button {
  border-radius: 6px;
    padding: 1rem 2rem;
    font-size: 1rem;
   font-weight: 600;
		color: white;
  transition   :        all 0.3s ease;
  width: 100%;
         background:   #27ae60;
	cursor: pointer;
    border   : none;
}

.submit-button:hover {
  background: #229954;
  transform: translateY(-2px);
}

.site-footer {
   background: #2c3e50;

		 color: #ecf0f1;

	   padding: 3rem 0 1rem;


}

.footer-content


{
    max-width: 1200px;
  margin: 0 auto;
    padding: 0 2rem;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.footer-logo {
    height:      40px;
   width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-section h4 {

   color    :    #27ae60;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-links {
	   list-style: none;


}

.footer-links li {
	margin-bottom    :    0.5rem;
}

.footer-links a   {
   color:      #bdc3c7;
               text-decoration: none;
  transition: color 0.3s ease;

}

.footer-links a:hover {
   color: #27ae60;
}

.footer-bottom {
	padding-top: 1rem;
  border-top: 1px solid #34495e;
  color: #95a5a6;
  text-align: center;
  margin-top: 2rem;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-navigation.active {
        display: block;
    }
    
    .mobile-toggle.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .cta-segment {
        grid-template-columns: 1fr;
        padding: 60px 2rem;
    }
    
    .cta-content {
        padding-left: 0;
        text-align: center;
    }
    
    .cta-visual {
        padding-right: 0;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .services-showcase {
        grid-template-columns: 1fr;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
    }
}.about-hero {
     background: linear-gradient(135deg, #f1f8e9 0%, #e8f5e8 100%);
         padding: 120px 0 60px;
   display: grid;
   grid-template-columns: 1fr 1fr;
   align-items: center;
  gap: 3rem;
  max-width: 1200px;
   margin:        0 auto;}

.about-hero-content {
          padding-left: 2rem;
}

.about-hero h1 {
   	font-size: 3rem;
               color: #2c3e50;
    margin-bottom: 1.5rem;
  font-weight: 700;
     }

.about-hero-subtitle {
    font-size    : 1.3rem;
    color: #6c757d;
  line-height: 1.6;
}

.about-hero-visual {


  padding-right     :     2rem;}

.about-hero img {
  width  :       100%;
    height: auto;
      border-radius: 15px;
     box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.company-story {
    padding   :80px 0;
  background: white;
}

.story-layout {
   display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
               align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
         color: #2c3e50;
  margin-bottom: 2rem;
}

.story-text p {
   font-size: 1.1rem;
    line-height: 1.8;
   color: #6c757d;
  margin-bottom: 1.5rem;
}

.story-image img {
	width: 100%;
               height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}


.team-expertise {
    padding: 80px 0;
   background: #f8f9fa;
}

.team-expertise h2 {
	    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
  color: #2c3e50;}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.expertise-card {
    background: white;
    padding: 2.5rem 2rem;
  border-radius: 15px;
    text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}  

.expertise-card:hover {
  -moz-transform: translateY(-8px);
  -webkit-transform: translateY(-8px);
  transform: translateY(-8px);


}

.expertise-icon {
  width: 80px; 
  height: 80px; 
  margin: 0 auto 1.5rem; 
   border-radius: 50%; 
  background: linear-gradient(135deg, #27ae60, #2ecc71); 
    display: flex; 
  align-items: center; 
 justify-content :        center;
}

.icon-biomimetics::before,
.icon-innovation::before,
.icon-coaching::before {
  content: '';
       width: 40px;
       height: 40px;
   	background: white;
   	 border-radius: 8px;
}

.expertise-card h3 {
  color     : #2c3e50;
          margin-bottom: 1rem;
  font-size: 1.4rem;
}

.expertise-card p {


   color: #6c757d;
  line-height: 1.6;


}

.mission-values {
  padding: 80px 0;
   background: white;
}

.mission-layout {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items: start; 
	
}

.mission-content h2 {
    font-size :      2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.values-list

{
   display: grid;
   gap: 1.5rem;
}



.value-item {
   padding: 1.5rem;
   background: #f8f9fa;
  border-radius: 10px;
    border-left: 4px solid #27ae60;
}

.value-item h4 {
   color: #2c3e50;
    margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.value-item p {
   color: #6c757d;
    line-height: 1.6;
	
}

.mission-visual img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.approach-methodology {
   padding: 80px 0;
	background: #f8f9fa;
}

.approach-methodology h2 {
   font-size: 2.5rem;
   text-align: center;
         margin-bottom: 2rem;
    color: #2c3e50;
}

.approach-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.2rem;
   color: #6c757d;
  text-align: center;
  line-height: 1.6;
}

.methodology-phases {
	display: grid;
  gap: 2rem;
}

.phase-container {
    background: white;
  padding: 2rem;
   border-radius: 12px;
  display: flex;
  align-items: start;
	gap: 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
} 

.phase-number	{
  width: 60px;
    height: 60px;
    background :       #27ae60;
   color: white;
    border-radius: 50%;
    display     :   flex;
    align-items: center;
               justify-content: center;
   font-size: 1.5rem;
       font-weight: bold;
    flex-shrink: 0;
}

.phase-content h3

{
       color    :#2c3e50;
       margin-bottom: 1rem;
             font-size: 1.3rem;


}

.phase-content p {

	    color: #6c757d;
   line-height: 1.6;}

.achievements-section {
  padding  :      80px 0;
    background  :  white;
}

.achievements-section h2 {
    font-size: 2.5rem;
    text-align: center;
	 margin-bottom: 3rem;
    color: #2c3e50;
}

.stats-container {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
    margin-bottom: 4rem;
}

.stat-item {

	     text-align: center;
    padding: 2rem 1rem;
     }

.stat-number	{

    font-size: 3rem;
    font-weight: bold;
   color: #27ae60;
   margin-bottom: 0.5rem;
}

.stat-label {
   color: #6c757d;
    font-size: 1.1rem;
}

.achievement-highlight {
  display: grid;
   grid-template-columns :      1fr 2fr;
    gap: 3rem;
   align-items: center;
  background: #f8f9fa;
   padding: 3rem;
    border-radius: 15px;
}

.achievement-highlight img {
      width: 100%;
    height: auto;
  border-radius  :  12px;
}

.highlight-content h3 {
   color: #2c3e50;
      font-size :     1.8rem;
      margin-bottom: 1rem;
}

.highlight-content p {
   color: #6c757d;
   line-height: 1.6;
	font-size: 1.1rem;
}

.contact-info-section {
   padding: 80px 0;
        background: #f8f9fa;
}

.contact-info-layout {
   display: grid;
   grid-template-columns: 1fr 1fr;
               gap: 4rem;
  align-items: center;
}

.contact-details h2   {
  color: #2c3e50;
   font-size: 2.3rem;
   margin-bottom: 1.5rem;

}

.contact-details > p {
   color: #6c757d;
    font-size: 1.2rem;
	margin-bottom: 2rem;
    line-height    :     1.6;
}

.contact-item {
   margin-bottom: 2rem;
}

.contact-item strong {
  color: #27ae60;

   display: block;

   margin-bottom     :    0.5rem;

  font-size    :    1.1rem;
}

.contact-item p {
   color :        #6c757d;
    line-height: 1.6;
}

.back-home-button {
  background: #27ae60;
  color: white;
   padding: 1rem 2rem;
    text-decoration: none;
  border-radius    :      8px;
    font-weight: 600;
  display: inline-block;
    transition: all 0.3s ease;
}

.back-home-button:hover {


  transform: translateY(-2px);
    background: #229954; 
	


}

.contact-visual img {
    width: 100%;
  height: auto;
   border-radius: 12px;
} 

.thankyou-hero {
  background: linear-gradient(135deg, #e8f5e8 0%, #f1f8e9 100%);
   padding: 120px 0 80px;
  min-height: 100vh;
   display: flex;
   align-items    :   center;
}

.thankyou-container {
    max-width: 1200px;
    margin: 0 auto;
  padding: 0 2rem;
   display: grid;
   grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.thankyou-content {
    text-align: center;
}

.success-icon {
    margin-bottom  :     2rem;
}

.checkmark-circle {
  width: 100px; 
	  height: 100px; 
	   background:        #27ae60; 
	   border-radius: 50%; 
	    display  :        flex; 
	   align-items: center; 
	  justify-content: center; 
	   margin: 0 auto; 
	   position: relative; 
	   animation :  checkmark-appear 0.8s ease;
}@keyframes checkmark-appear {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}.checkmark {
   width    :    30px;
     height: 15px;
     border-left: 4px solid white;
     border-bottom: 4px solid white;
     transform: rotate(-45deg);
}

.thankyou-content h1 {
        font-size: 2.8rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.thankyou-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  margin-bottom: 3rem;
   line-height: 1.6;
}

.next-steps {
    background: white;
   padding    :   2rem;
  border-radius: 12px;
   margin-bottom: 2rem;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.next-steps h3     {

  color   :     #2c3e50;
         margin-bottom     :      1.5rem;
  font-size: 1.4rem;

}

.steps-list {
	   display: grid;

	   gap: 1rem;}

.step-item {

	display: flex;
    align-items: center;
          gap: 1rem;
		 text-align: left;
}

.step-icon {
    width: 35px;
   height: 35px;
    background: #27ae60;
        color: white;
	 border-radius: 50%;
  display: flex;
    align-items: center;
   justify-content   : center;
		 font-weight: bold;
   flex-shrink: 0;
}

.step-item p {
  color: #6c757d;
    line-height: 1.5;
}

.action-buttons {
   display: flex;
  gap: 1rem;
    justify-content: center;
					flex-wrap:      wrap;
}

.thankyou-visual img {
        width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.additional-resources {
    padding:  80px 0; 
  background: white;
}

.additional-resources h2
{
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #2c3e50;
}



.resources-intro {
	text-align: center;
  font-size: 1.2rem;
      color: #6c757d;
    max-width: 700px;
   margin: 0 auto 3rem;
       line-height: 1.6;
}

.resources-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card 
 {
  background: #f8f9fa;

  border-radius: 12px;

	 overflow:       hidden;

   transition: transform 0.3s ease; 
	
}



.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.resource-card img {
   width: 100%;
   height: 200px;
    object-fit: cover;
}

.resource-content {
   padding: 1.5rem;
}

.resource-content h3 {
    color: #2c3e50;
   margin-bottom: 1rem;
    font-size: 1.3rem;
}

.resource-content p {
   color   :    #6c757d;
   line-height: 1.6;
}

.emergency-contact


{
    padding: 60px 0;
   background: #f8f9fa;
}

.emergency-info {
       text-align: center; 
	    max-width: 800px; 
	   margin: 0 auto;}

.emergency-info h2 {
                    color: #2c3e50;
   font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.emergency-info > p {
   color: #6c757d;
	font-size   :       1.2rem;
    margin-bottom: 2rem;
   line-height: 1.6;
}

.contact-details-urgent {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap     :2rem;
}

.contact-method {
	background: white;
	    padding: 2rem;
	  border-radius    :       12px;
	  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}  

.contact-method strong {
  color: #27ae60;
  display: block;
    margin-bottom: 0.8rem;
  font-size: 1.1rem;
}

.contact-method p	{

  color: #2c3e50;
    margin-bottom: 0.5rem;
  font-size: 1.1rem;
	}  

.availability {
       color   :    #6c757d;
  font-size   :      0.9rem;
}@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        padding: 100px 2rem 60px;
        text-align: center;
    }
    
    .about-hero-content,
    .about-hero-visual {
        padding-left: 0;
        padding-right: 0;
    }
    
    .story-layout,
    .mission-layout,
    .contact-info-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievement-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .thankyou-content {
        order: 2;
    }
    
    .thankyou-visual {
        order: 1;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-details-urgent {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .methodology-phases .phase-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}.policySection {
  background: #f8f9fa;
    padding: 80px 2rem;

}

.policyContainer    {
    margin: 0 auto;
                    text-align :      left;
	 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;
    }
}