* {
  margin: 0;
  padding: 0;
    box-sizing: border-box;
}

body  
  {
     font-family: 'Segoe UI', system-ui, sans-serif;
   line-height: 1.6;
   color: #2c3e50;
    background  :#ffffff;
	}

.container {
    max-width: 1200px;

	    margin: 0 auto;

	      padding: 0 20px;
}

.main-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 rgba(0,0,0,0.1);
	}

.nav-container {
   max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
   justify-content: space-between;
   align-items: center;
	height: 70px;
}

.company-logo {
  height: 45px;
  width: auto;
}

.nav-links		{
   display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
  font-weight :  500;
	font-size: 16px;
  transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.mobile-menu-toggle {
  gap: 4px;
	 display: none;
   cursor   :pointer;
  flex-direction: column;
}

.mobile-menu-toggle span {
  width    :   25px;
      height: 3px;
    background: #2c3e50;
  transition: 0.3s;
}

.mobile-nav {
      display: none;

  position: absolute;

    top: 100%;

    left: 0;

  width: 100%;

    background: white;

    border-top: 1px solid #eee;

  padding: 20px;

   flex-direction: column;

         gap: 15px;
	}

.mobile-nav a {
      text-decoration: none;
   color: #2c3e50;
  font-weight: 500;
  padding: 10px 0;


}

.hero-section {


  display  :   flex;
                    align-items: center;
  min-height: 100vh;
   padding: 100px 20px 50px;
  max-width: 1200px;
   margin: 0 auto;
  gap: 60px;
	}

.hero-content {
   flex: 1;
}

.hero-content h1

{
  font-size  :    3.2rem;
  font-weight :     700;
    color: #2c3e50;
          margin-bottom: 24px;
 line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
   color: #5a6c7d;
   margin-bottom: 40px;
   line-height: 1.5;
}

.hero-buttons {


  display: flex;
      gap: 20px;
   flex-wrap: wrap;

}

.primary-btn, .secondary-btn {
  padding   :  16px 32px;
    text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.primary-btn {

  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);



}

.primary-btn:hover		{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.secondary-btn {
	background    :       transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.secondary-btn:hover {
   background: #3498db;
	 color: white;
}  

.hero-image {

	   flex: 1;}

.hero-image img {
  width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.features-section		{
 padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.features-section h2 {
  text-align: center;
   font-size: 2.5rem;
   color: #2c3e50;
	margin-bottom: 60px;
    font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.feature-card {
   background: white;
   padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
     transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-card h3


{
   font-size   :   1.5rem;
   color: #2c3e50;
    margin-bottom: 16px;
   font-weight: 600;
}

.feature-card p  
  {
  color   :    #5a6c7d;
   line-height:1.6;
}

.methodology-section

{
    padding: 80px 0;
} 

.method-content		{
  display: flex;
  align-items: center;
    gap  :        60px;
}

.method-text {
  flex   : 1;
}

.method-text h2 {
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 24px;
  font-weight: 700;
}

.method-text p {
		 font-size: 1.2rem;
  color: #5a6c7d;
   margin-bottom: 30px;
     line-height: 1.6;
}

.method-list {
 list-style: none;
  padding: 0;
}

.method-list li {
  padding   :     12px 0; 
	  color: #34495e; 
	  position: relative; 
	    padding-left: 25px;
}

.method-list li:before {
  content: "✓";
    position: absolute;
    left:     0;
    color     :      #27ae60;
   font-weight: bold;
}

.method-image {
		 flex: 1;}

.method-image img {
	 width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);


}

.programs-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.programs-section h2 {
  text-align: center;
   font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 60px;
	font-weight: 700;
}

.programs-grid
{
    display    :  grid;

	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

	    gap: 40px;
}

.program-card {
		background: white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.program-card:hover {
     -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
	}

.program-card img {
   height: 200px;
  width: 100%;
        object-fit: cover;
}

.program-card h3 {
    font-size: 1.4rem;
  color: #2c3e50;
  margin: 20px 20px 15px;
          font-weight: 600;
}

.program-card p {
   color: #5a6c7d;
  margin: 0 20px 20px;
	 line-height  :    1.6;
}

.program-features {
  display: flex;
    flex-wrap: wrap;
  gap: 10px;
   margin: 0 20px 20px;
}

.program-features span {
    background: #e3f2fd;
   color: #1976d2;
  padding: 6px 12px;
  border-radius: 20px;
   font-size   :0.9rem;
    font-weight:    500;
}

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
    text-align    :   center;
}

.cta-content h2 {
   font-size: 2.5rem;
  margin-bottom: 20px;
    font-weight:   700;
}

.cta-content p {
	 font-size: 1.2rem;
  margin-bottom: 40px;
   max-width: 700px;
	margin-left: auto;
   margin-right: auto;
   line-height: 1.6;
}

.cta-button {
   display: inline-block;
  padding :    18px 40px;
    background  :   white;
	color: #3498db;
	text-decoration: none;
    border-radius :  8px;
   font-weight: 600;
   font-size: 1.1rem;
                    transition: all 0.3s;
}

.cta-button:hover


{
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-section     {
   padding: 80px 0;
    background: #f8f9fa;
}

.contact-section h2  {
    text-align    :   center;
  font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom :       60px;
  font-weight  : 700;
}

.contact-wrapper{
	 display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
         align-items: start;

}



.contact-info h3 {
    color: #2c3e50;
   font-size: 1.8rem;
  font-weight   :   600;
   margin-bottom: 20px;
}

.contact-info p {
  color: #5a6c7d;
  margin-bottom: 30px;
  line-height: 1.6;
   font-size: 1.1rem;
     }  

.contact-details {
   display: flex;
  flex-direction: column;
    gap: 15px;
}

.contact-item{
  display: flex;
    flex-direction: column;
    gap: 5px;


}

.contact-item strong {
   font-weight: 600;
   color: #2c3e50;
}

.contact-item span {
 color: #5a6c7d;
}

.contact-form {
    background: white;
     padding   :40px;
    border-radius  :       12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group  
  {
   margin-bottom    : 24px; 

}

.form-group label {
    display: block;
   margin-bottom: 8px;
   color: #2c3e50;
	 font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 12px 16px;
  border: 2px solid #e9ecef;
    border-radius: 8px;
      font-size :  16px;
 transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3498db;
}

.form-group textarea{
         resize: vertical;
    min-height  :   120px;
}

.submit-btn {
	 width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
    border  :  none;
    border-radius: 8px;
  font-size :  1.1rem;
    font-weight: 600;
          cursor: pointer;
   transition: all 0.3s;
}

.submit-btn:hover   {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
} 

.main-footer {

	background: #2c3e50;
   color: white;
   padding: 50px 0 20px;
	}

.footer-content 
 {
	max-width  :   1200px;
    margin: 0 auto;
    padding: 0 20px;
  display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap    :      40px;


}

.footer-logo {
    height: 40px;
   margin-bottom   :     20px;
  filter: brightness(0) invert(1);
}

.footer-section h4	{
  margin-bottom   :        20px;

	         color: #ecf0f1;

	   font-weight: 600;
}

.footer-section p {

   color: #bdc3c7;
   line-height: 1.6;


}



.footer-section ul {
    list-style: none;
}

.footer-section ul li {
       margin-bottom: 10px;
}

.footer-section ul li a {
   color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
	color: #3498db;
}

.footer-bottom {
  border-top: 1px solid #34495e; 
	  margin-top: 40px; 
	   padding-top: 20px; 
	    text-align: center; 
	    max-width: 1200px; 
	  margin-left: auto; 
	    margin-right: auto; 
	   padding-left: 20px; 
	  padding-right: 20px;
}

.footer-bottom p {

	 color: #95a5a6;
	}@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav.active {
        display: flex;
    }
    
    .hero-section {
        flex-direction: column;
        gap: 40px;
        padding: 100px 20px 50px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .method-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .features-grid,
    .programs-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .primary-btn,
    .secondary-btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .features-section h2,
    .programs-section h2,
    .contact-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .method-text h2 {
        font-size: 2rem;
    }
}.page-header {
  background: linear-gradient(135deg, #34495e, #2c3e50);
          color: white;
   padding: 120px 0 80px;
  margin-top: 70px;
}

.header-content {
  text-align    :   center;
                    max-width: 800px;
	margin     :   0 auto;
}

.header-content h1 {
  font-size: 3rem;
	    font-weight    :  700;
	  margin-bottom: 20px;
}

.header-content p  
  {
    font-size: 1.3rem;
    opacity    : 0.9;
  line-height: 1.6; 

}

.company-story {
  padding: 80px 0;
}

.story-content {
    display: flex;
    align-items: center;
  gap: 60px;
}

.story-text {
        flex: 1; 

}

.story-text h2 {
  font-size   :2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
    font-weight: 700;
}

.story-text p {
   font-size: 1.1rem;
   color: #5a6c7d;
    margin-bottom: 25px;
  line-height: 1.7;
}

.story-image {

   flex: 1;
     }

.story-image img {
    width: 100%;

   border-radius: 12px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.values-section {
    padding: 80px 0;
   background: #f8f9fa;
}

.values-section h2 {
	text-align: center;
   font-size   :      2.5rem;
    color: #2c3e50;
  margin-bottom: 60px;
    font-weight: 700;
}

.values-grid 
 {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
       gap: 40px;
}

.value-item {
    background: white;
	 padding: 40px 30px;
               border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.value-item:hover {
  transform: translateY(-5px);
}

.value-item h3 {

	  font-size: 1.4rem;
	color: #2c3e50;
	 margin-bottom: 15px;
    font-weight: 600;

	}

.value-item p {
  color: #5a6c7d;
   line-height: 1.6;
}

.team-section {
	padding: 80px 0;
} 

.team-section h2 {
  text-align: center;
   font-size:       2.5rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight    : 700;
}

.team-intro


{
   text-align     : center;
    max-width: 800px;
  margin: 0 auto 60px;


}

.team-intro p {
	font-size:      1.2rem;
   color: #5a6c7d;
   line-height: 1.6;
}

.expertise-areas h3
{
    font-size: 2rem;
   color: #2c3e50;
    margin-bottom: 40px;
	 text-align: center;
   font-weight: 600;
}

.expertise-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
}

.expertise-item {
    text-align    :    center;

	  padding: 30px 20px;

	    border: 2px solid #e9ecef;

		border-radius: 12px;

	  transition: all 0.3s;
}

.expertise-item:hover {
  border-color: #3498db;
	 background: #f8f9fa;
}

.expertise-item h4
{
      font-size: 1.3rem;
    color   :      #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.expertise-item p {
	color: #5a6c7d;
   line-height: 1.5;
}

.achievements-section {
    padding    :   80px 0;
   background: #f8f9fa;
}

.achievements-section h2 {
               text-align: center;
  font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 60px;
   font-weight: 700;
}

.achievements-content {
   display: flex;
   align-items: center;
    gap: 60px;
}

.achievements-text
{
         flex: 1;
}

.achievements-text p {
         font-size: 1.2rem;
    color: #5a6c7d;
  margin-bottom: 40px;
	line-height: 1.6;


}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
	 gap: 30px;
}

.stat-item {
    text-align: center;

  padding: 20px;

   background: white;

  border-radius: 12px;

  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.stat-number {
 font-size: 2.5rem;
  font-weight: 700;
	 color: #3498db;
  margin-bottom: 10px;
}

.stat-label {
    color: #5a6c7d;
  font-weight  :500;
}

.achievements-image {
   flex: 1;
}

.achievements-image img {
    width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}



.approach-section {
    padding: 80px 0;


}

.approach-section h2 {
    text-align: center;
   font-size: 2.5rem;
	color: #2c3e50;
    margin-bottom: 60px;
   font-weight    :    700;
}

.approach-content {
    display: flex;
    align-items: center;
          gap: 60px;
}

.approach-image {

    flex: 1; 
	
}

.approach-image img		{
   width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}


.approach-text{
	flex: 1; 
	
}

.approach-text h3 {
  font-size  :   1.6rem;
	color  :      #2c3e50;
    margin-bottom: 15px;
		 margin-top: 30px;
    font-weight  :   600;
}

.approach-text h3:first-child {
   margin-top: 0;
}

.approach-text p 
 {
    color: #5a6c7d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.mission-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
   text-align: center;

}

.mission-content h2 {
   	font-size: 2.5rem;
 margin-bottom: 30px;
   font-weight: 700;
	}

.mission-content p {
    font-size: 1.2rem;
    margin-bottom    :        25px;
  max-width: 800px;
    margin-left  :   auto;
	 margin-right: auto;
    line-height: 1.6;
   opacity: 0.95;


}

.mission-image {
  margin-top: 50px;
	
}

.mission-image img {
   max-width: 600px;
    width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60, #2ecc71);
   color: white;
    padding: 120px 0 80px;
  margin-top   :      70px;
   text-align: center;
}

.thankyou-content {
               max-width: 700px;
                    margin: 0 auto;
}

.success-icon {
    margin-bottom: 40px;
}

.checkmark-circle {
  width: 80px;
   height: 80px;
    border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
   display: inline-flex;
  align-items: center;
  justify-content: center;
     margin: 0 auto;
}

.checkmark {
    width :        30px;
    height: 30px;
   border-right: 4px solid white;
  border-bottom: 4px solid white;
  transform: rotate(45deg);
    margin-top: -8px;
}

.thankyou-content h1 {
    font-size: 3rem;
    font-weight: 700;
   margin-bottom: 25px;
}

.lead-text {
  font-size: 1.3rem;
  opacity: 0.95;
    line-height: 1.6;
}

.next-steps {
     padding:    80px 0;
   background: #f8f9fa;
}

.next-steps h2  {
   margin-bottom: 60px;
  text-align: center;
    color: #2c3e50;
    font-weight: 700;
	 font-size   :2.5rem;
}

.steps-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.step-item {
   background   :  white;
               padding: 40px 30px;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   text-align     :    center;
    position: relative;
}

.step-number

{
         width   :   50px;
    height: 50px;
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
  border-radius: 50%;
  display: flex;
   align-items: center;
  justify-content: center;
  font-size: 1.5rem;
   font-weight: 700;
  margin: 0 auto 25px;
}

.step-item h3 {
    font-size: 1.4rem;
  color: #2c3e50;
    margin-bottom: 15px;
  font-weight: 600;


}

.step-item p {
    color: #5a6c7d;
  line-height: 1.6;
}

.preparation-tips {
  padding    :80px 0;
}

.tips-content {
       display    :    flex;
   align-items: center;
  gap: 60px;
}

.tips-text {
   flex: 1;
}

.tips-text h2 {
   font-size   :    2.5rem;
   color: #2c3e50;
    margin-bottom: 25px;
   font-weight: 700;
}

.tips-text p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom :   30px;
	 line-height: 1.6;
}

.tips-list {
  list-style: none;
   padding: 0;
}

.tips-list li  {
   padding: 15px 0;
   color: #34495e;
    position: relative;
   padding-left: 30px;
   line-height: 1.6;
}

.tips-list li:before {
  content: "📋";
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.tips-image {
    flex: 1;
}

.tips-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.resources-section {
      padding: 80px 0;
    background: #f8f9fa;
}

.resources-section h2{
          font-size: 2.5rem;
	margin-bottom: 30px;
    text-align: center;
  color: #2c3e50;
  font-weight: 700;
}

.section-intro {


  text-align: center;
          font-size: 1.2rem;
  color  :     #5a6c7d;
  margin-bottom  : 60px;
       max-width: 700px;
  margin-left: auto;
   margin-right: auto;
    line-height: 1.6;
     }

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.resource-item {
   background   :        white;
   padding: 40px 30px;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
                    border-left  :        5px solid #3498db;
}

.resource-item h3 {
	font-size: 1.4rem;
  color: #2c3e50;
    margin-bottom: 15px;
  font-weight: 600;
}

.resource-item p {
  color: #5a6c7d;
    line-height: 1.6;
}

.contact-reminder {
        padding   :    80px 0;
}

.reminder-content {
    text-align: center;
   max-width: 800px;
    margin:       0 auto;
}

.reminder-content h2 {
   font-size : 2.5rem;
   color: #2c3e50;
   margin-bottom: 25px;
  font-weight: 700;
}  

.reminder-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
	margin-bottom: 40px;
  line-height: 1.6;
}

.contact-info-quick {
    gap   :    60px;
       margin-bottom: 50px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
}

.contact-info-quick .contact-item {
   flex-direction: column;
  align-items: center;
  gap: 8px;
		 display: flex;
}

.contact-info-quick .contact-item strong {
      color: #2c3e50;
  font-weight  :  600;
   font-size: 1.1rem;
	
     }

.contact-info-quick .contact-item span {
  color: #5a6c7d;
}

.return-home {
   display: flex;
    gap: 20px;
   justify-content: center;
  flex-wrap: wrap;
}

.home-button,
.about-button {
   padding    :      16px 32px;
  text-decoration: none;
  font-weight: 600;
   border-radius:   8px;
  transition: all 0.3s;
   font-size: 1.1rem; 
	
}

.home-button
	{
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.home-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.about-button {
      background: transparent;
   color   :       #3498db;
  border    :   2px solid #3498db;
}

.about-button:hover {
    background: #3498db;
  color: white;
}@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
    }
    
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
    }
    
    .story-content,
    .achievements-content,
    .approach-content,
    .tips-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .approach-content {
        flex-direction: column-reverse;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid,
    .values-grid,
    .expertise-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-quick {
        flex-direction: column;
        gap: 30px;
    }
    
    .return-home {
        flex-direction: column;
        align-items: center;
    }
    
    .home-button,
    .about-button {
        text-align: center;
        min-width: 250px;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .story-text h2,
    .values-section h2,
    .team-section h2,
    .achievements-section h2,
    .approach-section h2,
    .mission-content h2,
    .next-steps h2,
    .tips-text h2,
    .resources-section h2,
    .reminder-content h2 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
}.pol {
	    margin: 7% 15%;
     }