* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
  font-family: 'Arial', sans-serif;
   line-height: 1.6;
       color: #333;
    background-color: #fafafa;
}

.container {

	    max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
	}

.main-navigation{
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  position: fixed;
   width: 100%;
  top: 0;
    z-index :      1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
   max-width: 1200px;
    margin :    0 auto;
  display: flex;
    justify-content: space-between;
	align-items    :   center;
	padding: 15px 20px;
}

.brand-logo .logo-img {
    height: 45px;

	   width: auto;
} 

.nav-links {
  display: flex;
        list-style: none;
  gap: 30px;
}

.nav-links a {

	    color: white;
       text-decoration: none;
       font-weight: 500;
        transition: color 0.3s ease;


     }

.nav-links a:hover {
   color: #ffd700;
}

.burger-menu 
 {
               display  :      none;
    flex-direction: column;
  cursor     :      pointer;
}

.burger-menu span {
  width: 25px;
  height   :  3px;
  background: white;
  margin: 3px 0;
  transition: 0.3s;
}

.hero-section {
    margin-top: 75px;
   padding:  80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
    min-height: 500px;
    color: white;
}

.hero-content {
                    flex :  1; 
	  max-width: 600px; 

}

.hero-content h1 {
  font-size: 2.8rem;
 margin-bottom: 20px;
    font-weight: 700;
  line-height: 1.2;
}

.hero-subtitle {
	 font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-cta {
  display: flex;
   gap: 20px;
    flex-wrap:  wrap;
}

.primary-btn, .secondary-btn {
    padding: 15px 30px;
    border-radius   :      8px;
  -moz-border-radius: 8px;
    -o-transition: all 0.3s ease;
    text-decoration: none;
    font-weight: 600;
  transition:       all 0.3s ease;
  display: inline-block;
}

.primary-btn{

    background: #ff6b6b;
	color: white;
  border: 2px solid #ff6b6b;

}

.primary-btn:hover {
    background: transparent;
  color     :#ff6b6b;
}

.secondary-btn {
  background     :transparent;
  color: white;
     border: 2px solid white;
}

.secondary-btn:hover {
  background     :       white; 
	   color: #667eea; 
	
}

.hero-image {
    flex: 1;
    text-align: center;
   margin-left: 40px;
}

.hero-image img
	{
  max-width    : 100%;
    height: auto;
               border-radius:      12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.intro-section {
	   padding: 80px 20px;
  background: white;
    text-align: center;

}

.intro-section h2 {
    font-size: 2.5rem;

  color: #2c3e50;

  margin-bottom: 20px;
}

.intro-section p {
  font-size: 1.1rem;
  max-width: 800px;
   margin    :   0 auto 50px;
    color:   #666;
}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;
   margin-top     :  60px; 

}

.stat-item h3 {
    font-size: 3rem;
    color   :  #3498db;
  margin-bottom     : 10px;


}

.stat-item p {

	   font-size: 1.1rem;
    color: #7f8c8d;
}

.services-section {
  padding: 80px 20px;
   background:  #f8f9fa;
}

.services-section h2 {
    text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 60px;
}

.services-grid {
  display : grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 40px;
}  

.service-card {
    background: white;
       border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
          transition: transform 0.3s ease;
}

.service-card:hover
{
  transform: translateY(-5px);
}

.service-card img    {


       width: 100%;
    height: 200px;
   object-fit: cover;


}

.service-card h3 {
    padding: 25px 25px 15px;
        font-size: 1.5rem;
    color: #2c3e50;
}

.service-card p {
   padding: 0 25px 25px;
   color: #666;
    line-height: 1.6;
}

.methodology-section {
  padding: 80px 20px;
  background: white;
}

.methodology-content {
   display: flex;
  align-items: center;
  gap: 60px;
}

.method-text {
   flex: 1;
	
}

.method-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 15px;
}

.method-text h3 {
	font-size: 1.5rem;
   margin-bottom: 25px;
    color: #3498db;
}

.method-text ul
	{
   margin-bottom: 25px;
}

.method-text li {
   margin-bottom: 10px;
     padding-left: 20px;
  position: relative;
}

.method-text li:before {
  content: '→';

    position : absolute;

   left: 0;

    color: #3498db;

  font-weight   :        bold;
}

.method-image {
    flex: 1;
}

.method-image img{
  width: 100%;
    height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    text-align: center;
   color: white;
}

.cta-content h2 {
   font-size: 2.5rem;
		 margin-bottom: 20px;
}

.cta-content p  {
   font-size: 1.2rem;
  margin-bottom: 30px;
   max-width: 600px;
  margin-left: auto;
      margin-right: auto;

}

.cta-button {


  display: inline-block;
    padding: 20px 40px;
    background: white;
  color: #ff6b6b;
	text-decoration   :     none;
	 border-radius: 50px;
   font-weight: 700;
   font-size  :        1.1rem;
  transition: all 0.3s ease;}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2); 
	
}

.testimonials-section {

	   padding: 80px 20px;
	background: #f8f9fa;
     }

.testimonials-section h2

{
   text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
   margin-bottom  :       60px;
}

.testimonials-grid

{
   display    : grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
   background: white;
   padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.testimonial-card p
	{
   font-style: italic;
  margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author strong {
        margin-bottom: 5px;
          color: #2c3e50;
    display :   block;
}

.testimonial-author span {
   color: #7f8c8d;

	    font-size: 0.9rem;
}

.contact-section {
    padding: 80px 20px;
	 background: white;
}

.contact-wrapper {
    display: grid;
   grid-template-columns: 1fr 1.5fr;
   gap: 60px;
   align-items: start;

}

.contact-info h2 {
  font-size :  2.5rem;
    color: #2c3e50;
  margin-bottom: 20px;
}

.contact-info p {
    color: #666;
   margin-bottom: 30px;
	 font-size: 1.1rem;
}

.contact-details {
    display: flex;
     flex-direction    :        column;
      gap: 15px;
}

.contact-item {
   display: flex;
          flex-direction:    column;
}

.contact-item strong {
         color: #2c3e50;
  margin-bottom: 5px;
}

.contact-form     {
    background: #f8f9fa;
      padding: 40px;
  border-radius  :   12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
    display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
               display: block;
   margin-bottom: 8px;
    font-weight: 600;
   color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
        font-size: 1rem;
   transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
               border-color: #3498db;
}

.submit-btn		{

	  width: 100%;
    padding: 15px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
    border: none;
  border-radius: 8px;
   font-size: 1.1rem;
    font-weight: 600;
  cursor: pointer;
   transition: all 0.3s ease;


}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3); 
	
} 

.site-footer {

	   background   :  #2c3e50;
   color: white;
    padding: 50px 20px 20px;
	

}

.footer-content {
    align-items: start;
   gap: 40px;
  grid-template-columns   :    1fr 2fr;
    display: grid;
    margin: 0 auto;
   max-width: 1200px;
}

.footer-logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  display     :     grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 30px;
}

.footer-column h4 {
    margin-bottom: 15px;
   color: #ecf0f1;
}

.footer-column ul {
   list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
	   color   :  #bdc3c7;
  text-decoration: none;
   transition :       color 0.3s ease;
     }

.footer-column ul li a:hover {
   color: #3498db;
}

.footer-column p {
                    color: #bdc3c7;
  margin-bottom: 5px;
}

.footer-bottom {
	 max-width: 1200px;
  margin: 30px auto 0;
	padding: 20px 0;
  border-top: 1px solid #34495e;
  text-align: center;
       color: #95a5a6;
}@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 75px);
        background: #1e3c72;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 50px;
        transition: right 0.3s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }
    
    .hero-content {
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-image {
        margin-left: 0;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .methodology-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .intro-section h2,
    .services-section h2,
    .methodology-section h2,
    .cta-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form {
        padding: 25px;
    }
}.about-hero {
    margin-top: 75px;
  padding: 100px 20px 80px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: white;
   text-align: center;
}

.about-hero-content h1 {
	  font-size: 3.2rem;
    margin-bottom: 25px;
	font-weight: 700;
     }

.hero-description {
  font-size: 1.3rem;
               max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
    line-height: 1.6;
}

.company-story{
   padding: 90px 20px;
    background: white;
}

.story-layout {
    display: flex;
  align-items: center;
   gap: 70px;
}

.story-content {

  flex: 1;
}

.story-content h2 {
   font-size: 2.6rem;
  color: #2c3e50;
  margin-bottom: 30px;
}  

.story-content p {
    font-size: 1.1rem;
      color: #555;
       margin-bottom: 25px;
       line-height     :1.7;
}

.milestone-stats {
   display: grid; 
	  grid-template-columns: repeat(2, 1fr); 
		gap :     25px; 
	    margin-top: 40px;
}

.milestone {
    border-radius: 10px;
   background: #f8f9fa;
   padding: 20px;
   text-align: center;
}

.milestone .year {
  display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
  margin-bottom:   8px;
}

.milestone p {
   color: #666;
   margin: 0;
   font-size: 0.95rem;
}

.story-visual

{
    flex: 1;
}

.story-visual img {
   width: 100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.our-mission  {
    padding: 90px 20px;
    background: #f8f9fa;
}

.our-mission h2 {
  text-align: center;
    font-size: 2.6rem;
    color: #2c3e50;
  margin-bottom: 60px;
}

.mission-grid {
   display   :     grid;

	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));

	   gap: 35px;
}

.mission-card {
	 background: white;
   padding :        40px 30px;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
}

.mission-card h3 {
     font-size: 1.6rem;
    color: #2c3e50;
    margin-bottom: 20px;

}  

.mission-card p {
    color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

.team-section

{


    padding: 90px 20px;
	 background: white;


}

.team-section h2 {
    text-align     :     center;
     font-size: 2.6rem;
         color: #2c3e50;
      margin-bottom: 20px;
}

.team-intro    {
    text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
    max-width: 600px;
  margin-left :     auto;
       margin-right  :   auto;
}

.team-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap :       40px;
}

.team-member {
  display  : flex;
          background: #f8f9fa;
    border-radius:     15px;
	overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08); 
	
}

.member-photo {
   flex: 0 0 120px;
}

.member-photo img {
    width: 100%;
   height: 120px;
  object-fit: cover;
}

.member-info {

  flex: 1;
   padding :        25px;


}

.member-info h3 {
   font-size: 1.3rem;
   color: #2c3e50;
  margin-bottom: 8px;
}

.position {
  display: block;
  color :     #3498db;
   font-weight: 600;
  font-size: 0.9rem;
    margin-bottom: 15px;
}

.member-info p {
	 color: #666;
   font-size: 0.95rem;
   line-height: 1.6;
}

.methodology-detail {
    padding: 90px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white; 
	
}

.methodology-detail h2 {
      text-align: center;
   font-size: 2.6rem;
  margin-bottom: 60px;
}

.method-steps {
  display: grid;
   gap:       40px;
}

.step-item {
  display:     flex;
   align-items: center;
       gap    :30px;
  background: rgba(255,255,255,0.1);
  padding :   30px;
    border-radius: 15px;
  backdrop-filter: blur(10px); 

}

.step-number {
   flex    :0 0 60px;
   height: 60px;
   background: #ff6b6b;
  border-radius   : 50%;
   display: flex;
  align-items     :     center;
    justify-content: center;
    font-size: 1.5rem;
   font-weight: 700;
   color :  white;
}

.step-content h3
{
  font-size: 1.4rem;
  margin-bottom: 12px;
	
}

.step-content p {
  opacity: 0.9;
    line-height: 1.6;
}


.why-choose-us {
    padding: 90px 20px;
    background    :     white;
}

.why-choose-us h2  
  {
  margin-bottom: 60px;
   text-align: center;
  font-size: 2.6rem;
  color: #2c3e50;
}

.advantages-grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;}

.advantage-item {
    text-align :    center;
  padding: 30px;
}

.advantage-icon     {
    margin-bottom: 25px;
}

.advantage-icon img {
  width: 80px;
    height: 80px;
   object-fit: cover;
  border-radius  :50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advantage-item h3 {
    font-size:  1.4rem;
  color: #2c3e50;
    margin-bottom: 15px;
}

.advantage-item p   {
    color: #666;
  line-height: 1.6;
} 

.contact-info-section {
	   padding  :  90px 20px;
	background: #f8f9fa;

}

.contact-info-wrapper   {
   text-align: center;
}

.contact-info-wrapper h2 {
	 font-size: 2.6rem;
   color: #2c3e50;
	margin-bottom: 20px; 

}

.contact-info-wrapper p {
  font-size     :  1.2rem;
   color: #666;
   margin-bottom: 50px;
}

.contact-details-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap    : 40px;
   max-width: 800px;
    margin  :    0 auto;
}

.contact-detail {
        background: white;
    padding: 30px;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-detail h4
{
    font-size: 1.3rem;
   color: #2c3e50;
               margin-bottom: 15px;
}

.contact-detail p {
          color: #666;
    font-size:    1rem;
   line-height: 1.6;
   margin: 0;
}

.thankyou-hero {
	    margin-top  :     75px;
  padding:   100px 20px 80px;
  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:      30px;
}

.checkmark-circle {
    width:       80px;
    height  :   80px;
       background: white;
    border-radius: 50%;
   margin:        0 auto;
   display: flex;
   align-items: center;
  justify-content: center;
   position: relative;
}

.checkmark {
   width: 25px;
	  height:25px;
	    position: relative;
}

.checkmark:before {
  content: '';
    position: absolute;
    left: 50%;
    top: 50%;
   width: 6px;
   height: 12px;
  border: solid #27ae60;
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -60%) rotate(45deg);
}

.thankyou-content h1 {
    font-size: 2.8rem;
  margin-bottom: 20px;
  font-weight   :700;
}

.thankyou-subtitle 
 {
    font-size : 1.3rem;
    opacity: 0.9;
   margin-bottom: 50px;
}

.confirmation-details {
  background: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
  backdrop-filter: blur(10px); 

}



.confirmation-details h2 {
     font-size: 2rem;
	   margin-bottom: 30px;
}

.next-steps {
   display :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.step-box {
  background: rgba(255,255,255,0.15);
    padding: 25px;
    border-radius  :12px;
   text-align: left;
}

.step-box h3 {
   font-size: 1.2rem;
   margin-bottom     :      12px;
    color: #fff;
}

.step-box p {
	 opacity: 0.9;
    line-height: 1.6;
   font-size: 0.95rem;
}

.useful-resources {
   padding: 80px 20px;
    background: white;
}

.useful-resources h2 {
    text-align: center;
   font-size: 2.5rem;
   color    :#2c3e50;
  margin-bottom: 20px;
}

.resources-intro {
  text-align: center;
    font-size: 1.1rem;
   color: #666;
  margin-bottom: 50px;
   max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:       30px;
} 

.resource-card {
  display: flex;
   background: #f8f9fa;
      border-radius: 12px;
		 overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-3px);
}

.resource-card img {
    flex: 0 0 100px;
  width: 100px;
   height: 100px;
  object-fit: cover;
}

.resource-content 
 {
  flex  :    1;
	padding     :   20px;
}


.resource-content h3 {
    font-size: 1.2rem;
  color :   #2c3e50;
   margin-bottom: 10px;
}

.resource-content p {
    color: #666;
  font-size: 0.9rem;
   line-height: 1.6;
}

.contact-reminder {
   padding: 80px 20px;
   background: #f8f9fa;
     text-align: center;
}


.reminder-content h2 {
         font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.reminder-content p {
    color: #666;
  font-size: 1.1rem;
   margin-bottom: 40px;
}

.contact-info-quick {
	 display: flex;
   justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-item-quick {
		 display   :  flex;
    flex-direction: column;
  align-items: center; 
	}

.contact-item-quick strong {
   color: #2c3e50;

	   margin-bottom: 8px;

	      font-size: 1.1rem;
}

.contact-item-quick span     {
    color :    #666;
}

.action-buttons {
    display    :      flex;
  gap: 25px;
   justify-content: center;
       flex-wrap: wrap;

}

.return-home-btn,
.learn-more-btn {
  -moz-transition: all 0.3s ease;
   padding   :        15px 30px;
   -moz-border-radius: 8px;
   -webkit-border-radius: 8px;
   -webkit-transition: all 0.3s ease;
  border-radius: 8px;
 text-decoration: none;
    font-weight: 600;
   transition: all 0.3s ease;
    display: inline-block;
}  

.return-home-btn {
   background: #3498db;
	 color  :   white;
    border: 2px solid #3498db;
}

.return-home-btn:hover	{
   background: transparent;
    color: #3498db;


}

.learn-more-btn {
   background: transparent;
   color: #2c3e50;
   border:   2px solid #2c3e50;
}

.learn-more-btn:hover {
  background: #2c3e50;
    color: white;
}

.testimonial-preview {
          padding: 80px 20px;
    background: white;
}

.testimonial-preview h2    {
   text-align: center;
    font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 50px;
}

.testimonial-showcase {
      max-width: 900px;
  margin: 0 auto;}

.testimonial-highlight {
  display: flex;
   align-items: center;
    gap: 40px;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.testimonial-highlight img {
      flex: 0 0 150px;
    width: 150px;
  height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-text {
    -ms-flex: 1;
   flex: 1;
  -webkit-flex: 1;
}

.testimonial-text p {
   font-style: italic;
    font-size: 1.1rem;
  color:   #555;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author-highlight strong {
  color: #2c3e50;
   display: block;
   margin-bottom   :5px;
   font-size: 1.1rem;
}

.testimonial-author-highlight span {
  color: #7f8c8d;
  font-size: 0.95rem;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .story-layout {
        flex-direction: column;
        gap: 40px;
    }
    
    .milestone-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        flex-direction: column;
    }
    
    .member-photo {
        flex: none;
    }
    
    .member-photo img {
        width: 100%;
        height: 200px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-card {
        flex-direction: column;
    }
    
    .resource-card img {
        flex: none;
        width: 100%;
        height: 150px;
    }
    
    .contact-info-quick {
        flex-direction: column;
        gap: 25px;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-highlight {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .testimonial-highlight img {
        flex: none;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-content h2,
    .our-mission h2,
    .team-section h2,
    .methodology-detail h2,
    .why-choose-us h2,
    .contact-info-wrapper h2,
    .thankyou-content h1,
    .useful-resources h2,
    .contact-reminder h2,
    .testimonial-preview h2 {
        font-size: 2rem;
    }
    
    .mission-card,
    .contact-detail,
    .confirmation-details,
    .testimonial-highlight {
        padding: 25px;
    }
    
    .step-item {
        padding: 20px;
    }
}.cookies-section,
.privacy-section {

     padding     :    80px 20px;
  background: white;
  text-align: center;


}

.cookies-section h2,
.privacy-section h2 {
                    font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 20px;
}

.cookies-section p,
.privacy-section p {
    font-size: 1.1rem;
         max-width:        800px;
   margin: 0 auto 20px;
    color     :     #666;
     line-height: 1.6;
}@media (max-width: 480px) {
    .cookies-section h2,
    .privacy-section h2 {
        font-size: 2rem;
    }
}