* {
    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;
}

.main-navigation {
   position: fixed;
   top: 0;
                    width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
   transition: all 0.3s ease;
  border-bottom: 1px solid #e8e8e8;
}

.nav-wrapper {
  max-width: 1200px;
   margin: 0 auto;
  display: flex;
	align-items: center;
  justify-content  :   space-between;
  padding: 1rem 2rem;
}

.brand-section


{
      flex-shrink: 0;
}

.company-logo {
  height: 45px;
   width: auto;
}

.desktop-menu {
    display: flex;
	 gap: 2rem;


}

.nav-link {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
 position: relative;
   transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.nav-link::after {


  content: '';
  position: absolute;
  bottom: -5px;
   left: 0;
   width: 0;
    height: 2px;
   background: #3498db;
  transition: width 0.3s;
     }

.nav-link.active::after,
.nav-link:hover::after {


   width: 100%; 


}

.mobile-toggle

{
      display: none;
         flex-direction: column;
   cursor: pointer;
   padding: 5px;


}

.mobile-toggle span {
       width :      25px;
          height: 3px;
  background: #34495e;
  margin: 3px 0;
  transition: 0.3s;
}

.mobile-toggle.active span:nth-child(1)   {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
   opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
 display: none;
  background: white;
    padding: 1rem 2rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);


}

.mobile-link {
    display: block;
        padding: 0.8rem 0;
    text-decoration: none;
  color:     #34495e;
  border-bottom: 1px solid #eee;
}

.mobile-link:hover {
  color: #3498db;
}

.hero-section {
	  padding-top   :       120px;
    padding-bottom: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.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: 3rem;
  font-weight: 700;
   color   :white;
    margin-bottom: 1.5rem;
  line-height: 1.2;

}

.hero-description {
   font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

.hero-buttons {
   display    :   flex;
  gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
	 padding: 1rem 2rem;
  border-radius: 50px;
   text-decoration: none;
               font-weight: 600;
    transition: all 0.3s;
         display: inline-block;
} 

.primary-btn {
    background: #e74c3c;
	color: white;
  border: 2px solid #e74c3c; 

}

.primary-btn:hover {

   background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
	}

.secondary-btn {
  background: transparent;
   color: white;
	border: 2px solid white;
}

.secondary-btn:hover {
  background: white;
   color: #764ba2;
}

.hero-image {
      text-align: center;
}

.hero-image img {
   max-width: 100%;
  height: auto;
    border-radius  :        15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.features-section {
     padding: 5rem 0;
	 background: #f8f9fa;
}

.container {
  max-width: 1200px;
    margin: 0 auto;
    padding   :        0 2rem;
}

.features-section h2 {
    color: #2c3e50;
  font-size: 2.5rem;
          text-align: center;
  margin-bottom :     3rem;
}

.features-grid {
      display  :      grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 2rem;
}

.feature-card {
   background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s;
} 

.feature-card:hover {
  transform: translateY(-5px);
	
}

.feature-icon {
 width: 80px; 
   height: 80px; 
  background: linear-gradient(135deg, #3498db, #2980b9); 
    border-radius: 50%; 
  margin: 0 auto 1.5rem;
}

.feature-card h3 {


	font-size: 1.4rem;
   margin-bottom: 1rem;
  color: #2c3e50;

}

.services-section {
    padding: 5rem 0;
} 

.services-section h2 {
     text-align     :       center;
	 font-size: 2.5rem;
    margin-bottom: 3rem;
   color: #2c3e50;
     }

.services-layout {
  display: flex;
    flex-direction: column;
        gap: 3rem;
}

.service-item {
   display: grid;
  grid-template-columns: 1fr 2fr;
   gap: 3rem;
   align-items: center;
   padding:       2rem;
  background: white;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-item:nth-child(even) {
   grid-template-columns: 2fr 1fr;


}

.service-item:nth-child(even) .service-content {


    order: -1;
}

.service-item img {
  width: 100%;
   height: 250px;
		 object-fit: cover;
  border-radius: 10px;

}

.service-content h3 {
  font-size: 1.6rem;
   margin-bottom: 1rem;
  color: #2c3e50;
}

.service-content p{
  margin-bottom:     1.5rem; 
	 color: #666; 
    line-height: 1.7;
}

.service-content ul


{
	list-style: none;
}  

.service-content li     {
    position: relative;
  padding-left: 1.5rem;
    margin-bottom :      0.5rem;
   color: #555;
}

.service-content li::before {
  content: '✓';
      position: absolute;
     left: 0;
       color: #27ae60;
     font-weight: bold;
}

.cta-section {


   padding     :       5rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);}

.cta-container  {
  max-width: 1200px;
   margin   :    0 auto;
   display: grid;
  grid-template-columns: 2fr 1fr;
	gap   :   4rem;
   align-items: center;
  padding: 0 2rem;
}

.cta-content h2
	{
        font-size: 2.5rem;
  color   :    white;
    margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
	margin-bottom: 2rem;
    line-height:     1.7;
}

.cta-button {
	 display: inline-block;
	background: #e74c3c;
  color: white;
               padding: 1.2rem 2.5rem;
   border-radius: 50px;
  text-decoration: none;
    font-weight: 600;
   font-size: 1.1rem;
   transition: all 0.3s;
}

.cta-button:hover {
    background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(231, 76, 60, 0.4);
}

.cta-image img {
   width: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.testimonials-section {
	      padding     :        5rem 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: 2.5rem;
	border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position    :      relative;
}

.testimonial-card p {
       font-style: italic;
    line-height: 1.7;
  margin-bottom: 1.5rem;
  color: #555;


}

.testimonial-author strong {
    display: block;
   color  :#2c3e50;
   font-size     :  1.1rem;
}

.testimonial-author span {
       color: #666;
    font-size: 0.9rem;}

.contact-section {
	   padding: 5rem 0;
    background: white; 



}

.contact-section h2 {
   text-align    :    center;
  font-size: 2.5rem;
  margin-bottom  :     3rem;
    color: #2c3e50;
}

.contact-layout
{

	    display: grid;
    grid-template-columns: 1fr 2fr;
	 gap: 4rem;

     }

.contact-info h3 {
      color  :    #2c3e50;
   margin-bottom: 1rem;
   font-size: 1.8rem;
}

.contact-info p {


				 color: #666;
  line-height: 1.7;
   margin-bottom: 2rem;

}  

.contact-details {
   display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h4 {
    font-size: 1.2rem;
   color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-form {
		 background     :       #f8f9fa;

  padding: 2.5rem;

  border-radius: 15px;
}

.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.full-width {
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #2c3e50;
  font-weight: 500;
}  

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus
	{
	  outline: none;
	border-color: #3498db;
	}

.submit-btn {

	    background :     #3498db;
  color: white;
  padding: 1rem 2rem;
                    border: none;
  border-radius   :   50px;
    font-size: 1.1rem;
    font-weight: 600;
                    cursor: pointer;
     transition: all 0.3s;


}

.submit-btn:hover {
   background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.site-footer {
   background: #2c3e50;
   color: white;
   padding: 3rem 0 1rem; 
	
}

.footer-content	{
  max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
    padding: 0 2rem;
}

.footer-section h4 {
   margin-bottom: 1rem;
   color :#3498db;
}

.footer-section ul {
  list-style   :       none;
}

.footer-section li

{
    margin-bottom :        0.5rem; 

}

.footer-section a  
  {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section a:hover    {
   color: #3498db;
}

.footer-logo 
 {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-bottom {
   padding-top: 2rem;
	color: #bdc3c7;
   margin-top: 2rem;
   text-align: center;
    border-top: 1px solid #34495e;
}@media (max-width: 768px) {
    .desktop-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-item:nth-child(even) .service-content {
        order: 0;
    }

    .cta-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-wrapper {
        padding: 1rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .feature-card,
    .service-item,
    .contact-form {
        padding: 1.5rem;
    }

    .cta-container {
        padding: 0 1rem;
    }
}.page-header {


    padding-top: 120px;
      padding-bottom: 60px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
   text-align: center;
    color: white;}

.header-content h1     {
   font-size: 3rem;
    margin-bottom: 1rem;
         font-weight: 700;
}

.header-content p {
  font-size: 1.3rem;
    opacity: 0.9;
}

.story-section {
        background: white;
   padding: 5rem 0;
}

.story-layout {


  display: grid;
  grid-template-columns: 2fr 1fr;
   gap: 4rem;
 align-items: center;}

.story-content h2 {
    font-size     :2.5rem;
  color: #2c3e50;
   margin-bottom: 2rem; 
	
}

.story-content p {
    font-size: 1.1rem;
    line-height  :1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-image img {
   width :      100%;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.mission-section {
    padding  :      5rem 0;
  background: #f8f9fa;


}

.mission-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}



.mission-item {
	  background: white;
  padding: 2.5rem;
   border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition  : transform 0.3s;}

.mission-item:hover {
  transform: translateY(-8px);
} 

.mission-item h3 {
  font-size: 1.6rem;

	  color: #2c3e50;

	   margin-bottom: 1.5rem;

	  border-bottom: 3px solid #3498db;

		padding-bottom: 0.5rem;

	   display: inline-block;
}

.mission-item p {
    line-height: 1.7;
		color: #666;
	    font-size: 1.05rem;
}

.approach-section {
    padding: 5rem 0;
    background: white;
}

.approach-section h2 {
   text-align: center; 
	   font-size: 2.5rem; 
	  color: #2c3e50; 
	  margin-bottom: 3rem;

}

.approach-content
	{
         display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 4rem;
   align-items :        start;
}

.approach-text h3 {
  font-size: 1.8rem;
   color: #2c3e50;
               margin-bottom: 1.5rem;
	
}

.approach-text h4 {
       font-size  :        1.3rem;
   color:       #34495e;
  margin: 2rem 0 1rem 0;
}

.approach-text p {
  line-height: 1.7;
   color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;

     }

.approach-list {
   list-style: none;
    padding-left: 0;
}


.approach-list li {
       position: relative;
  padding-left: 2rem;
   margin-bottom: 1rem;
    color: #555;
  line-height: 1.6;
	}

.approach-list li::before
{
  content: '→';
         position :   absolute;
   left: 0;
    color: #3498db;
    font-weight: bold;
  font-size :     1.2rem;


}

.approach-image img {
                    width: 100%;

	   border-radius: 15px;

	  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.expertise-section h2 {
  text-align: center;
          font-size   :   2.5rem;
   margin-bottom: 3rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.expertise-card   {
                    text-align: center;
   padding: 2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition   :       transform 0.3s;
}

.expertise-card:hover
	{
  transform: translateY(-5px);
}

.expertise-number {
   font-size: 3.5rem;
  font-weight: 700;
   color: #fff;
  margin-bottom    :   1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.expertise-card h4 {
   font-size: 1.3rem;
  margin-bottom: 1rem;
    color: #fff;
}

.expertise-card p {
  color: rgba(255,255,255,0.9);
 line-height: 1.6;
}

.specializations-section {
   padding: 5rem 0;
    background: white;
}

.specializations-section h2 {
         text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom   :      3rem;
}

.specializations-layout


{
   display: flex;

	  flex-direction: column;

	    gap    :      3rem;


}

.spec-item {
    display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
    align-items: center;
    background: #f8f9fa;
         padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.spec-item:nth-child(even) {
   grid-template-columns: 2fr 1fr;
}

.spec-item:nth-child(even) .spec-content{
   order: -1;
}

.spec-item img {
  width: 100%;
       height: 280px;
   object-fit: cover;
  border-radius: 10px;
}

.spec-content h3 {
  font-size: 1.7rem;
  color: #2c3e50;
   margin-bottom: 1.5rem;
}

.spec-content p {


        line-height: 1.7;
    color: #666;
	font-size: 1.05rem;

}

.results-section {
    padding: 5rem 0;
	background: #f8f9fa;
}

.results-section h2 {
  text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
  margin-bottom: 2rem;
}

.results-content > p {


   text-align: center;
    font-size     :       1.2rem;
   color: #555;
    margin-bottom: 3rem;
   max-width:       800px;
  margin-left: auto;
   margin-right: auto;
  line-height: 1.7;
}

.achievements-list     {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.achievement {
		background: white;
  padding: 2.5rem;
  border-radius :    15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #3498db;
}

.achievement h4 {
  font-size: 1.4rem;
    color: #2c3e50;
  margin-bottom     :   1rem;
}

.achievement p {
   color: #666; 
	   line-height: 1.7; 
	   font-size: 1.05rem;
}

.thankyou-section {
   padding-top: 120px;
   padding-bottom: 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    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 {
    color: white;
}

.success-icon {
		width: 100px;
       height: 100px;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
	display  :        flex;
    align-items  :      center;
   justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
}


.checkmark {

  height: 50px;
   position: relative;
  width: 50px;

}

.checkmark::after {
  content: '✓';
    font-size: 3rem;
	color: white;
    position: absolute;
                    top: 50%;
   left: 50%;
  transform: translate(-50%, -50%);
}

.thankyou-content h1 {
	font-size: 3rem;
  text-align: center;
   margin-bottom: 1.5rem;
  font-weight  :        700;
}

.thankyou-message {
  font-size: 1.3rem; 
	   text-align: center; 
	  margin-bottom: 3rem; 
	  opacity:   0.95; 
	  line-height  :       1.6;
}

.next-steps {
   margin-bottom: 3rem;
}

.next-steps h2  {
    font-size: 2rem;
   margin-bottom: 2rem;
   text-align: center;
}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-item {
  background: rgba(255,255,255,0.1);
    padding   :        1.5rem;
  border-radius: 10px;
   text-align: center;
  backdrop-filter: blur(10px);
}

.step-number {
    width: 40px;
  height   :    40px;
   background: white;
   color: #27ae60;
  border-radius: 50%;
     display :        flex;
    align-items: center;
                    justify-content: center;
    margin  : 0 auto 1rem;
  font-weight: bold;
   font-size     :      1.2rem;
}

.step-item h3		{
  font-size: 1.2rem;

	   margin-bottom: 0.8rem; 

}

.step-item p {
  font-size: 0.95rem;

       opacity: 0.9;

   line-height: 1.5;
}

.additional-info


{
  background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom     :    2rem;
  backdrop-filter: blur(10px);
}

.additional-info h3 {
   font-size: 1.4rem;
   margin-bottom: 1rem;
	text-align: center;
}

.preparation-list {
   list-style :        none;
  padding: 0;
}

.preparation-list li {
   position: relative;
  padding-left: 2rem;
    margin-bottom:    0.8rem;
         line-height: 1.6;
  opacity: 0.95;
}

.preparation-list li::before


{


  position: absolute;
  color: white;
  content: '•';
  left: 0;
                    font-size     :  1.5rem;
}

.contact-reminder {
  background: rgba(255,255,255,0.1);
    padding: 2rem;
                    border-radius: 15px;
   margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.contact-reminder h3 {
    text-align   :        center;
  margin-bottom: 1.5rem;
  font-size    :        1.4rem;
}

.contact-info-grid {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1.5rem;

}

.contact-detail {
  text-align: center;
}

.contact-detail h4 {
   font-size:     1.1rem;
  margin-bottom: 0.5rem;
}

.contact-detail p {
    opacity: 0.95;
   line-height: 1.5;
}

.action-buttons {
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  display: flex;
}

.thankyou-image img {
      width: 100%;
  border-radius    :   15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
	}

.testimonial-preview {
   padding    :4rem 0;
  background: white;
}

.testimonial-preview h2 
 {
   text-align: center;
  font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;


}

.testimonial-highlight {
   max-width: 800px;
   margin: 0 auto;
	text-align: center;
    background: #f8f9fa;
	padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.testimonial-highlight p {
  font-size: 1.3rem;
    font-style: italic;
	color: #555;
    line-height: 1.6;
  margin-bottom: 1.5rem;
}

.testimonial-highlight .testimonial-author strong {
  display: block;
  color: #2c3e50;
   font-size: 1.1rem;
}

.testimonial-highlight .testimonial-author span {
    color: #666;
   	font-size :  0.95rem;
}@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.2rem;
    }

    .header-content p {
        font-size: 1.1rem;
    }

    .story-layout,
    .approach-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .spec-item,
    .spec-item:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .spec-item:nth-child(even) .spec-content {
        order: 0;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .thankyou-message {
        font-size: 1.1rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .next-steps h2 {
        font-size: 1.6rem;
    }

    .mission-grid,
    .achievements-list {
        grid-template-columns: 1fr;
    }

    .spec-item,
    .mission-item,
    .achievement {
        padding: 1.5rem;
    }

    .testimonial-highlight {
        padding: 2rem;
    }

    .testimonial-highlight p {
        font-size: 1.1rem;
    }
}.container h1

{
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
   margin-bottom     :     2rem;
	}

.container h2 {
   font-size: 1.6rem;
   color: #2c3e50;
   margin: 2rem 0 1rem;
}

.container p {
    color: #555;
    line-height: 1.7;
   margin-bottom: 1rem;
}

.container ul {
   list-style: none;
		 padding-left: 1.5rem;
}

.container li {
	 position: relative;
   margin-bottom: 0.5rem;
}

.container li::before {
  content: '✓';
               position: absolute;
  left  :    0;
    color: #27ae60;
    font-weight: bold;
}