* {
  margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  color :     #333;
   overflow-x     :     hidden; 

}

.container {
     max-width: 1200px;
		margin:0 auto;
	    padding: 0 20px;
}

.main-navigation {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 1rem 0;
  position: fixed;
   top: 0;
	width: 100%;
          z-index: 1000;
  box-shadow: 0 2px 10px 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;
}

.company-logo {
    height: 45px; 
    width: auto;
}

.nav-links-desktop {
   display: flex;
  gap: 2rem;
}

.nav-item {
  color: white;
	text-decoration: none;
    font-weight: 500;
  transition: color 0.3s ease;
     padding  :      8px 16px;
    border-radius :        5px;
}

.nav-item:hover {
   color: #3498db;
  background-color: rgba(255,255,255,0.1);
}

.mobile-menu-toggle {
   gap: 4px;
   cursor: pointer;
    flex-direction: column;
  display: none;
}

.mobile-menu-toggle span {
  width   :  25px;
                    height: 3px;
   background-color: white;
  transition: 0.3s;
        border-radius: 2px;
}

.mobile-menu {
   display: none;
    background-color: #2c3e50;
  padding: 1rem;
        position: absolute;
  top: 100%;
  left :       0;
  width: 100%;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mobile-nav-item {
   display :      block;
    color: white;
   text-decoration: none;
    padding    :  12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1); 
}

.mobile-nav-item:hover {
  background-color: rgba(255,255,255,0.1); 
	
}

.hero-section {
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px 0;
    color:        white;
	 overflow: hidden;
}

.hero-content  {
        max-width: 1200px;

	  margin:        0 auto;

	    padding    :      0 20px;

	    display: grid;

		 grid-template-columns: 1fr 1fr;

	   gap: 60px;

	    align-items: center;
}

.hero-text h1 {
    font-weight: 700;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-text p {
	font-size: 1.2rem;
       margin-bottom: 2rem;
  opacity: 0.9;
   line-height: 1.6;
}

.hero-buttons {
  display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
      padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;
}

.primary-btn {
  background-color: #e74c3c;
    color: white;
    border: 2px solid #e74c3c;
}

.primary-btn:hover {
  background-color: #c0392b;
            border-color: #c0392b;
     transform: translateY(-2px);
}

.secondary-btn 
 {
   background-color: transparent;
   color: white;
   border: 2px solid white;
}

.secondary-btn:hover {
   color: #667eea;
	 background-color: white;
} 

.hero-image img {
    width: 100%;
    height  : auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
	
}

.features-overview {
   padding: 80px 0;
    background-color: #f8f9fa;
}

.features-overview h2 {
  text-align: center;
               font-size: 2.5rem;
    margin-bottom     :    3rem;
    color: #2c3e50;
	font-weight: 700;
}

.features-grid {
   display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap     :   40px;
   margin-top    :       60px;
	
}

.feature-card {
    background     :    white;
                    border-radius: 15px;
    padding :      30px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.feature-card img {

  width :  100%;
  height: 200px;
   object-fit: cover;
   border-radius: 10px;
  margin-bottom: 20px;


}

.feature-card h3 {
         font-size:      1.5rem;
   margin-bottom: 15px;
	 color    :    #2c3e50;
  font-weight: 600;
}

.feature-card p {
   color: #666;
    line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
   padding: 80px 0;
  text-align:       center;
  color: white;
}

.cta-content h2 {
   font-size: 2.5rem;
	 margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
   font-size: 1.2rem;
	  margin-bottom: 2.5rem;
	  max-width: 800px;
		margin-left: auto;
	  margin-right     :      auto;
	   opacity: 0.9;
	
}  

.cta-button {
   background-color: white;
 color: #e74c3c;
	padding: 18px 40px;
   border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.cta-button:hover  
  {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.testimonials-section {
    padding: 80px 0;
   background-color: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
   color: #2c3e50;
    font-weight :   700;
}

.testimonials-grid	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
  margin-top: 60px;
}  

.testimonial-card {


		background: #f8f9fa;
  padding  :  30px;
 border-radius: 15px;
    border-left: 5px solid #3498db;}

.testimonial-card p {

	   line-height: 1.6;
         color   :     #555;
  font-style :      italic;
   margin-bottom: 20px;


}

.testimonial-author strong {
   color: #2c3e50;
  font-weight: 600;
}

.testimonial-author span {
    color    :       #777;
    font-size: 0.9rem;
}

.income-streams-section {
  padding  :       80px 0;
  background-color: #f8f9fa;
}

.income-content {
	display: grid;
   grid-template-columns     :       1fr 1fr;
  gap: 60px;
                    align-items: center;
}

.income-text h2 {
               font-size: 2.3rem;
   margin-bottom: 1.5rem;
   color: #2c3e50;
   font-weight: 700;
}

.income-text p {
	 margin-bottom: 2rem;
       color  :      #666;
     line-height: 1.6;
      font-size: 1.1rem;
}

.income-list {
   list-style: none;
   margin-left: 0;
}

.income-list li {
    padding: 10px 0;
  color:#555;
  position: relative;
  padding-left: 25px;
}

.income-list li:before {

	  content: "✓";
    position: absolute;
   left: 0;
  color: #27ae60;
  font-weight: bold;
     }

.income-image img {
	width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.contact-section {
    padding: 80px 0;
   background-color: white;
}

.contact-section h2 {
       text-align: center;
    font-size :      2.5rem;
   margin-bottom: 3rem;
  color:  #2c3e50;
  font-weight :        700;
}

.contact-wrapper {
	   display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 60px;

}

.contact-info h3 {
	color: #2c3e50;
   margin-bottom: 2rem;
   font-size   :     1.5rem;
}  

.contact-item {
    margin-bottom: 25px;
} 

.contact-item strong {
	color:#2c3e50;
   display   :block;
  margin-bottom :5px;
}

.contact-form {
		padding: 40px;
	 background: #f8f9fa;
    -moz-border-radius: 15px;
  -webkit-border-radius     : 15px;
  border-radius: 15px;}

.contact-form h3 {
	 color: #2c3e50;
   margin-bottom: 2rem;
  font-size: 1.5rem;
}

.form-group {
    margin-bottom :    20px;


}

.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 15px;
   border    :     2px solid #ddd;
    border-radius: 8px;
   font-size: 1rem;
  transition: border-color 0.3s ease;
    -webkit-transition     :  border-color 0.3s ease;
    -moz-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 {
	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); 
    color: white; 
    padding    :   15px 30px; 
  border: none; 
	border-radius: 8px; 
    font-size: 1.1rem; 
   font-weight: 600; 
    cursor    :       pointer; 
    transition: all 0.3s ease; 
  width: 100%;}

.submit-btn:hover   {


  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
     }

.main-footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
   padding: 60px 0 20px 0;
}

.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-section h4


{
    margin-bottom: 20px;
    color: #3498db;
   font-size: 1.2rem;
}

.footer-logo {
    height: 50px;

 width: auto;

  margin-bottom: 20px;

  filter: brightness(0) invert(1);
}

.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 ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
      text-align   :     center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
  color: #bdc3c7;
}@media (max-width: 768px) {
    .nav-links-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .income-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-section {
        padding: 100px 0 60px 0;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .features-overview {
        padding: 60px 0;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn, .secondary-btn {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  padding: 140px 0 100px 0;
	text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight:   700;
    margin-bottom: 1.5rem;
}

.about-hero-content p
	{
               font-size: 1.3rem;
  max-width: 600px;
   margin: 0 auto;
    opacity: 0.9; 
	
}

.company-story {
        padding  :       80px 0;
  background-color: white;
}

.story-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
 align-items: center;
}

.story-text h2 {
  font-size: 2.3rem;
    color: #2c3e50;
	margin-bottom    :   2rem;
      font-weight: 700;
}

.story-text p {
  margin-bottom: 1.5rem;
    color: #666;
  line-height: 1.7;
    font-size: 1.1rem;
}

.story-image img {
       width: 100%;
  height: auto;
               border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-values {
   padding: 80px 0;
   background-color: #f8f9fa;
}

.team-values h2 {
 text-align: center;
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 3rem;
  font-weight: 700;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
    margin-top: 60px;
}

.value-item {
	background :        white;
   padding: 40px 30px;
  border-radius :        15px;
	text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-top: 4px solid #3498db;
}

.value-item h3 {
           color: #2c3e50;

  margin-bottom: 15px;

   font-size: 1.4rem;

    font-weight: 600; 
	
	}

.value-item p {
   color: #666;
  line-height: 1.6;
}

.expertise-section {
    background-color: white;
   padding: 80px 0;
}

.expertise-content {
	  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;


}

.expertise-text h2 {
    font-size: 2.3rem;
   color: #2c3e50;
        margin-bottom: 1.5rem;
    font-weight: 700;


}

.expertise-text p {
    margin-bottom: 2rem;
   color: #666;
  line-height: 1.6;
    font-size: 1.1rem;
}

.expertise-list {

	    display: flex;
          flex-direction: column;
  gap   :     20px;}

.expertise-item {
   padding: 20px;
    background  :  #f8f9fa;
    border-radius: 10px;
  border-left: 4px solid #e74c3c;
}

.expertise-item strong {
   display: block;
	color: #2c3e50;
	font-size: 1.1rem;
    margin-bottom: 5px;
}

.expertise-item span {
    color: #666; 
  font-size     :    0.95rem;
}

.methodology-section {
    padding: 80px 0;
	  background-color: #f8f9fa;
}

.methodology-section h2 {
  text-align  :center; 
  font-size: 2.5rem; 
   color: #2c3e50; 
   margin-bottom: 3rem; 
   font-weight: 700;
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
    margin-top   :60px;
}

.method-step {
         background: white;
  padding: 30px;
   border-radius     :15px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.step-number {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: white;
    width: 50px;
    height: 50px;
   border-radius: 50%;
  display: flex;
   align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
   margin: 0 auto 20px auto;
}

.method-step h3 {
         color: #2c3e50;
    margin-bottom   :  15px;
  font-size: 1.3rem;
   font-weight: 600;
}

.method-step p     {
    color: #666;
  line-height: 1.6;
}

.achievements-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color     :     white;
}

.achievements-section h2 {
    text-align: center;
    font-size: 2.5rem;
	 margin-bottom: 3rem;
   font-weight: 700;
}

.achievements-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
  margin-top: 60px;
}

.achievement-card {
  text-align: center;
         padding: 30px 20px;
	
}

.achievement-number {
	   font-size: 3rem;
       font-weight: 700;
   margin-bottom: 10px;
   color: #f39c12;
     }

.achievement-text {
  font-size   :    1.1rem;
    opacity: 0.9;
}

.approach-section {
  padding: 80px 0;
    background-color :    white;
}

.approach-content{
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
		 align-items: center;
}  

.approach-text h2 {
	          font-size: 2.3rem;
         color: #2c3e50;
        margin-bottom: 1.5rem;
               font-weight: 700;

}

.approach-text p {
  margin-bottom: 1.5rem;
  color    :    #666;
  line-height :        1.7;
  font-size: 1.1rem;
}

.approach-image img {
   width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	 padding: 140px 0 100px 0;
      text-align: center;
    color: white; 

}

.thankyou-content {
	max-width: 600px;
   margin: 0 auto;
}

.success-icon {
  margin-bottom: 2rem;
}

.checkmark-circle {
   width: 80px;
   height: 80px;
  background: rgba(255,255,255,0.2);
    border-radius: 50%;
   margin     : 0 auto;
    display: flex;
    align-items: center;
   justify-content: center;
    border: 3px solid white;


}

.checkmark {

   width: 25px;
    height   : 15px;
    border: 3px solid white;
    border-top: none;
    border-right: none;
  transform: rotate(-45deg);
	}

.thankyou-content h1 {
   font-size: 3rem;
   font-weight   :       700;
   margin-bottom  : 1rem;
}

.thankyou-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

.next-steps-section 
 {
      padding: 80px 0;
   	background-color: white;
     }

.next-steps-section h2 {
      margin-bottom: 3rem;
    font-weight: 700;
	color: #2c3e50;
  font-size: 2.5rem;
                    text-align: center;
}

.steps-timeline {
  max-width: 800px;
   margin: 0 auto; 

}

.timeline-step {
   display: flex;
   gap   :      30px;
    margin-bottom: 40px;
   align-items: flex-start;
}



.step-marker {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color     :        white;
    width: 50px;
  height: 50px;
    border-radius: 50%;
   display: flex;
   align-items: center;
	justify-content: center;
   font-weight: 700;
  font-size: 1.2rem;
	flex-shrink:   0;
}

.step-content h3 {
   color: #2c3e50;
	 margin-bottom: 10px;
          font-size: 1.3rem;
    font-weight: 600;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.while-waiting-section {
  padding:    80px 0;
  background-color: #f8f9fa;
}

.while-waiting-section h2 {
				 text-align: center; 
    font-size: 2.5rem; 
       color: #2c3e50; 
   margin-bottom:     3rem; 
    font-weight: 700;
}

.waiting-content {
   display: grid;
	   grid-template-columns: 1fr 1fr;
	    gap: 60px;
	    align-items: center;
}

.waiting-text h3 {
  color: #2c3e50;
  margin-bottom: 1.5rem;
   font-size: 1.8rem;
    font-weight: 600;
}

.waiting-text p {
  margin-bottom: 2rem;

   color: #666;

          line-height: 1.6;

  font-size: 1.1rem;
}

.preparation-list {
  display: flex;
    flex-direction: column;
    gap     : 20px;
} 

.prep-item {
       padding: 20px;
   background: white;
    border-radius    :       10px;
       border-left:  4px solid #f39c12;

}

.prep-item strong {
    display: block;
   color: #2c3e50;
   font-size: 1.1rem;
    margin-bottom: 5px;
}

.prep-item span {
  color     :   #666;
   font-size: 0.95rem; 
	
}

.waiting-image img {
	 width: 100%;
   height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.resources-section {

   padding: 80px 0;

	  background-color: white;
     }

.resources-section h2 {
  text-align: center;
   font-size: 2.5rem;
	 color: #2c3e50;
   margin-bottom: 1rem;
    font-weight: 700;
}

.resources-intro {
   text-align: center;
    color: #666;
  font-size: 1.1rem;
   max-width: 600px;
   margin: 0 auto 3rem auto;
}

.resources-grid {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;

}

.resource-card {
	 background: #f8f9fa;
   border-radius: 15px;
  padding: 30px;
   text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}

.resource-card img {
    width: 100%;
  height: 180px;
    object-fit: cover;
   border-radius: 10px;
   margin-bottom: 20px;
}

.resource-card h3 {
	color: #2c3e50;
   margin-bottom: 15px;
    font-size     :      1.3rem;
   font-weight: 600;
}

.resource-card p {
          color: #666;
   line-height: 1.6;
}

.contact-reminder {
   padding: 80px 0;
   background-color :     #f8f9fa;
}

.reminder-content {
          text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.reminder-content h2 {
               font-size:    2.3rem;
                    color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 700;


}

.reminder-content p {
  color: #666;
	font-size:      1.1rem;
     margin-bottom: 2rem;
}

.emergency-contact {
    margin-bottom: 3rem;
   flex-wrap:wrap;
    justify-content  : center;
   display: flex;
  gap: 40px;
}


.contact-option {
  text-align: center;


}

.contact-option strong {
           font-size: 1.1rem;
          margin-bottom: 5px;
    display: block;
   color: #2c3e50;
}

.contact-option span {
    color: #666;
  font-size  : 1rem;
}

.back-buttons {
    display: flex;
   gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.back-btn {
   padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.back-btn.primary {
    background-color: #3498db;
	  color :     white;
	     border   :   2px solid #3498db;
}  

.back-btn.primary:hover {

    background-color: #2980b9;
   border-color :       #2980b9;
  transform: translateY(-2px);
     }

.back-btn.secondary {
   color  :    #3498db;
   background-color: transparent;
    border: 2px solid #3498db;
}

.back-btn.secondary:hover {
	   background-color: #3498db;
   color    :   white;
}

.nav-item.active
{
  background-color: rgba(255,255,255,0.2);
  color: #3498db;
}@media (max-width: 768px) {
    .story-content,
    .expertise-content,
    .approach-content,
    .waiting-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .emergency-contact {
        flex-direction: column;
        gap: 20px;
    }
    
    .back-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .back-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 120px 0 80px 0;
    }
    
    .thankyou-hero {
        padding: 120px 0 80px 0;
    }
    
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}.cookies-hero,
.privacy-hero    {
    margin-top: 5%;
}