* {
   margin: 0;
       padding: 0;
   box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
  color: #2c3e50;
    background: #fafbfc;
}

.main-navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position    :      fixed;
   top: 0;
   left: 0;
	 right: 0;
  z-index: 999;
  padding: 0.8rem 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-container {
    align-items: center;
   display   :   flex;
    justify-content: space-between;
   padding     :        0 2rem;
  margin: 0 auto;
  max-width: 1200px;

}

.site-logo {
    height: 45px;
  width: auto;
}

.menu-links {
   display: flex;
   gap  :        2.5rem;
}

.nav-link {
   color: white;
  text-decoration: none;
   font-weight: 500;
    transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link::after {
  content: '';
   position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
    height    :    2px;
   background: #ffd700;
   transition: width 0.3s ease;

}

.nav-link:hover::after {
   width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
   gap    :      4px;
}

.burger-menu span 
 {
    width: 25px;
  height: 3px;
  background: white;
    transition: 0.3s;
    transform-origin: center;

}

.burger-menu.active span:nth-child(1) {
	  transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}  

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-navigation {
  display: none;
  background: rgba(102, 126, 234, 0.95);
   position: absolute;
  top: 100%;
  left    :      0;
   right: 0;
   flex-direction: column;
   padding: 1rem 2rem;
}

.mobile-navigation.active {
	display: flex;
}

.mobile-link {
	 color   :        white;
         text-decoration: none;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
	transition: color 0.3s ease;
}

.mobile-link:hover {
   color :  #ffd700;
}

.hero-section {

	   margin-top: 80px;
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 70vh;
   display: flex;
    align-items  :       center;
}

.hero-content {
    max-width: 1200px;
  margin: 0 auto;
    display    :       grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.2rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.hero-description


{
       font-size: 1.2rem;
  color: #5a6c7d;
    margin-bottom: 2.5rem;
  line-height: 1.7;
	}

.hero-actions	{
   display   :    flex;
  gap: 1.5rem;
}

.primary-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
    padding: 1rem 2rem;
    text-decoration :       none;
   border-radius: 8px;
    font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   display: inline-block;
}

.primary-button:hover     {

  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
     }

.secondary-button		{
    background: transparent;
   color: #667eea;
    padding :     1rem 2rem;
   text-decoration: none;
    border  :      2px solid #667eea;
  border-radius: 8px;
  font-weight: 600;
         transition: all 0.3s ease;
    display     :      inline-block;
}

.secondary-button:hover 
 {
  background: #667eea;
    color     :    white;
  transform: translateY(-2px);
}

.hero-image img {
   width: 100%; 
	    height: auto; 
	        border-radius: 15px; 
	  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}  

.services-overview	{
	    padding: 5rem 2rem;
    background: white;
     } 

.services-container {
 max-width: 1200px;
   margin: 0 auto;
}

.services-container h2 {
    text-align: center;
  font-size: 2.8rem;
    color: #2c3e50;
               margin-bottom: 3rem;
  font-weight: 700;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2.5rem;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
   border: 1px solid #e9ecef; 
    background     :  #f8f9fa; 
  text-align: center; 
    border-radius     :        12px; 
    padding: 2.5rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 200px;
  object-fit: cover;
    border-radius:     8px;
    margin-bottom   :       1.5rem;
}

.service-card h3 {
   font-size: 1.4rem;
      color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
          color  :       #5a6c7d;
       line-height: 1.6;
}

.methodology-section {
   padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.methodology-container {


    margin :  0 auto;
    display: grid;
  gap: 4rem;
   max-width: 1200px;
   align-items: center;
	grid-template-columns: 1fr 1fr;

}

.methodology-content h2 {
    font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.methodology-content > p {
   font-size: 1.1rem;
  margin-bottom: 3rem;
   line-height: 1.7;
    opacity: 0.9;
}

.methodology-steps {
  display: grid;
    gap: 2rem;
} 

.step-item {
      display: flex;
	    align-items: flex-start;
	         gap: 1.5rem;}

.step-number {
  background: rgba(255,255,255,0.2);
   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-item h3 {
       margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
	}

.step-item p {
  opacity: 0.9;
    line-height: 1.6;
}

.methodology-visual img {
  width: 100%; 
    height: auto; 
   border-radius: 15px; 
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.cta-section{
   padding: 4rem 2rem;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
   color: white;
   text-align: center;
}

.cta-container {
  max-width: 800px;
   margin: 0 auto;
}

.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;
  line-height: 1.7;
   opacity: 0.95;
}

.cta-button {
    border-radius: 8px;
  color: #ee5a24;
        font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
   background: white;
    padding: 1.2rem 3rem;
  display     :    inline-block;
  text-decoration: none;
  font-size: 1.1rem;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);
}

.contact-section {

    background: #f8f9fa;
  padding :       5rem 2rem;}

.contact-container   {
   max-width: 1200px;
   margin: 0 auto;
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
	 color: #2c3e50;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.contact-info > p {
  font-size   :     1.1rem;
  color: #5a6c7d;
    margin-bottom: 2.5rem;
   line-height: 1.7;
}

.contact-details {
 display: grid;
  gap: 2rem;
}

.contact-item h4 {
    color: #2c3e50;
 margin-bottom  :   0.5rem;
  font-size: 1.1rem;
   font-weight: 600;
}

.contact-item p {
	 color: #5a6c7d;
  line-height: 1.6;
}

.contact-form {
   background: white;
    padding: 2.5rem;
      border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
	margin-bottom :        0.5rem;
   color: #2c3e50;
   font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
  padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
	border-radius  : 6px;
  font-size: 1rem;
   transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
     outline: none;
   border-color: #667eea;}

.form-group textarea {
     resize: vertical;
  min-height: 100px;


}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 1rem 2rem;
    border: none;
   border-radius:8px;
    font-size: 1.1rem;
   font-weight: 600;
  cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
}



.submit-button:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.main-footer {
   background: #2c3e50;
  color: white;
   padding: 3rem 2rem 1rem;
}

.footer-container {
      max-width  :        1200px;
   margin: 0 auto;
   display: grid;
        grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #bdc3c7;
	 line-height: 1.6;
}

.footer-column h4 {
   margin-bottom: 1rem;
    font-size   :       1.1rem;
   font-weight: 600;
}

.footer-column a {
    color: #bdc3c7;
   text-decoration: none;
  display: block;
   margin-bottom: 0.5rem;
   transition: color 0.3s ease;
}

.footer-column a:hover {
   color  :      white;
}

.footer-contact h4 {
	  margin-bottom: 1rem;
   font-size    :        1.1rem;
  font-weight: 600;
	}


.footer-contact p {
   color: #bdc3c7;
   margin-bottom    : 0.5rem;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #34495e;
	margin-top     :  2rem;
         padding-top: 1.5rem;
      text-align: center;
}

.footer-bottom p {
  color: #bdc3c7;
	font-size :    0.9rem;
}@media (max-width: 768px) {
    .menu-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .step-item {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-section {
        padding: 2rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-overview,
    .methodology-section,
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .services-container h2,
    .methodology-content h2,
    .contact-info h2 {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .main-footer {
        padding: 2rem 1rem 1rem;
    }
}.about-hero {
  margin-top: 80px;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #2c3e50 0%, #4a6741 100%);
  color :white;
  text-align: center;
  min-height: 50vh;
        display: flex;
    align-items: center;
  justify-content   :       center;
}

.about-hero-content h1 {
	         font-size: 3rem;
    margin-bottom: 1rem;
  font-weight: 700;
	}

.about-hero-subtitle {
  font-size  :     1.3rem;
  opacity  :    0.9;
   max-width: 600px;
  margin: 0 auto;
}

.company-story {
  padding: 5rem 2rem;
    background: white;

}

.story-container {
   max-width: 1200px;
  margin :  0 auto;
  display     : grid;
   grid-template-columns: 2fr 1fr;
    gap: 4rem;
  align-items: center;
}

.story-content h2 {
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 2rem;
  font-weight  :     700;
}

.story-content p {
  color: #5a6c7d;
    line-height: 1.8;
   margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-image img {
  width    :      100%;
		height :        auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.values-section {

	  padding: 5rem 2rem;

	    background: #f8f9fa;
	}

.values-container {

  max-width: 1200px;
    margin: 0 auto;
}

.values-container h2 {
  text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
  margin-bottom: 3rem;
   font-weight: 700;
}

.values-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap:  2rem;
}

.value-card
{
  background: white;
   padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12); 
	
}

.value-icon {
    margin-bottom: 1.5rem; 

}

.icon-circle


{
  width :70px;
  height: 70px;
	 border-radius     :  50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   display: flex;
    align-items: center;
   justify-content: center;
  margin: 0 auto;
    font-size:   1.5rem;
  font-weight: 700; 

}

.value-card h3 {
    color: #2c3e50;
  margin-bottom   :1rem;
    font-size: 1.3rem;
  font-weight: 600;
}

.value-card p {
    line-height: 1.6;
  color: #5a6c7d;
}


.expertise-section		{
  padding: 5rem 2rem;
       background: white;
}

.expertise-container {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
   grid-template-columns: 2fr 1fr;
	 gap: 4rem;
   align-items: center;
}

.expertise-content h2 {
  font-size   :       2.5rem;
   color: #2c3e50;
   margin-bottom: 2rem;
    font-weight    :      700; 

}

.expertise-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
    margin-bottom: 2rem;
}

.stat-item {
	 padding   :    1.5rem 1rem;
   background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
          font-size: 2.5rem;
    font-weight: 700;
   color: #667eea;
   margin-bottom: 0.5rem;
}  

.stat-label {
   color  :#5a6c7d;
    font-size: 0.9rem;
  font-weight: 500;
	}

.expertise-content p    {
    font-size:     1.1rem;
    margin-bottom :       1.5rem;
  line-height: 1.8;
   color:  #5a6c7d;
}

.expertise-images {
    display: grid;
    gap: 1.5rem;
}

.expertise-img {
    width: 100%;
    height: auto;
   border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
	
}



.approach-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.approach-container {
    max-width: 1200px;
  margin: 0 auto;
}

.approach-container h2 {
       text-align: center;
  margin-bottom  : 3rem;
   font-weight  :   700;
		 font-size: 2.8rem;
}

.approach-content {
        display: grid;
     grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.approach-text h3		{
  font-size: 1.4rem;
   margin-bottom: 1rem;
    font-weight: 600;
    margin-top: 2rem;
}


.approach-text h3:first-child {
  margin-top: 0;
}  

.approach-text p {
  line-height: 1.7;
        opacity: 0.9;
  margin-bottom: 1.5rem;
} 

.approach-image img {

	  width     :       100%;
   height: auto;
  border-radius   :    12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);

}

.mission-section {
   padding: 5rem 2rem;
    background: #2c3e50;
	color: white;
        text-align: center;
}

.mission-container {
                    max-width: 800px;
    margin     :      0 auto;
}

.mission-content h2 {
  font-size: 2.8rem;
    margin-bottom: 2rem;
   font-weight: 700;
}

.mission-text {
	font-size: 1.2rem;
  line-height: 1.8;
    margin-bottom   :2rem;
   opacity : 0.95;
}  

.thankyou-hero {

					 margin-top: 80px;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 90vh;
   display: flex;
   align-items: center;

}

.thankyou-container {
  max-width: 1000px;
  margin: 0 auto;
    text-align :center;
}

.success-icon {
   margin-bottom: 2rem;
}



.checkmark-circle {
   width: 100px;
	    height: 100px;
	    border-radius: 50%;
	  background: linear-gradient(135deg, #10ac84 0%, #0fb9b1 100%);
	   margin: 0 auto;
		 display: flex;
	      align-items: center;
	   justify-content: center;
	   position :       relative;
	               animation: scaleIn 0.5s ease-out;
}


.checkmark {
    width: 40px;
      height   : 20px;
  border: 4px solid white;
   border-top: none;
  border-right: none;
  transform: rotate(-45deg);
    animation: checkmarkDraw 0.3s ease-out 0.2s both;
}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmarkDraw {
    0% { transform: rotate(-45deg) scale(0); }
    100% { transform: rotate(-45deg) scale(1); }
}.thankyou-content h1 {
    font-size:     3rem;
   color: #2c3e50;
   margin-bottom: 1rem;
        font-weight: 700;
}

.thankyou-subtitle {
    font-size: 1.3rem;
   color: #5a6c7d;
   margin-bottom: 3rem;
  max-width: 600px;
	 margin-left: auto;
    margin-right: auto;
}

.confirmation-details {
  background: white;
   padding:       3rem 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	 margin-bottom: 3rem;
  text-align: left;
}

.confirmation-details h2 {
        text-align  : center;
    font-size: 2.2rem;
	color: #2c3e50;
    margin-bottom:  2rem;
  font-weight: 700;
}

.step-timeline {
  display: grid;
    gap: 2rem;
}

.timeline-item	{
  display: grid;
  grid-template-columns: 60px 1fr;
               gap: 1.5rem;
    align-items: start;
  padding     :      1.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.timeline-item:last-child {
	    border-bottom: none;
     }

.timeline-number {
               width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    border-radius: 50%;
  display: flex;
    align-items: center;
    justify-content: center;
  font-weight: 700;
  font-size    :       1.2rem;
} 

.timeline-content h3 {
    color: #2c3e50;
     margin-bottom: 0.5rem;
   font-size: 1.3rem;
	font-weight: 600;
}

.timeline-content p {


  color: #5a6c7d;
    line-height: 1.6;
  margin-bottom: 0.5rem;

}

.timeline-duration {

  color: #667eea;
   font-weight: 600;
  font-size: 0.9rem;
     }

.additional-info {
   margin-bottom: 3rem;
}

.additional-info h2 {
                    font-size: 2.2rem;
  color: #2c3e50;
    margin-bottom: 2rem;
   font-weight   :700;
}

.info-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.info-card {
   background: white;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align :       left;
}

.info-card h3   {
    color: #2c3e50;
    margin-bottom: 1rem;
	font-size: 1.2rem;
  font-weight: 600;
}

.info-card p {
	color: #5a6c7d;
    line-height:     1.6;
}

.contact-urgency
	{
    background: #fff3cd;
  border: 1px solid #ffeaa7;
  padding: 2rem;
    border-radius    :     12px;
    margin-bottom: 3rem;
   text-align: left;
}

.contact-urgency h3 {

    color: #856404;
    margin-bottom: 1rem;
   font-size: 1.3rem;
  font-weight: 600;


}

.contact-urgency p {
    color: #856404;
 margin-bottom: 1rem;
}

.urgent-contact {
   background: white;
                    padding: 1.5rem;
  border-radius: 8px;
		border-left: 4px solid #ffa502;
	
}

.urgent-contact p	{
   margin-bottom: 0.5rem;

   color: #2c3e50;
}

.thankyou-actions {
   display     :   flex;
               gap: 1.5rem;
    justify-content: center;
   flex-wrap: wrap;
}

.return-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	   color: white; 
	    padding  : 1rem 2rem; 
	    text-decoration: none; 
	   border-radius: 8px; 
	  font-weight: 600; 
	  transition: transform 0.3s ease, box-shadow 0.3s ease; 
	   display: inline-block;
}

.return-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.about-button {
	background     :  transparent;
   color: #667eea;
    padding: 1rem 2rem;
    text-decoration: none;
    border     :        2px solid #667eea;
    border-radius: 8px;
   font-weight: 600;
  transition  :      all 0.3s ease;
    display: inline-block;
}

.about-button:hover {

	   background: #667eea;
   color: white;
  transform: translateY(-2px);


}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-container,
    .expertise-container,
    .approach-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }
    
    .timeline-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .confirmation-details {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .company-story,
    .values-section,
    .expertise-section,
    .approach-section,
    .mission-section {
        padding: 3rem 1rem;
    }
    
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .story-content h2,
    .values-container h2,
    .expertise-content h2,
    .approach-container h2,
    .mission-content h2,
    .confirmation-details h2,
    .additional-info h2 {
        font-size: 2rem;
    }
    
    .value-card {
        padding: 2rem 1.5rem;
    }
    
    .confirmation-details {
        padding: 1.5rem 1rem;
    }
    
    .contact-urgency {
        padding: 1.5rem;
    }
    
    .checkmark-circle {
        width: 80px;
        height: 80px;
    }
    
    .thankyou-hero {
        padding: 2rem 1rem;
    }
}.privacy-section,
.cookies-section {
   padding    :5rem 2rem;
  background: #f8f9fa;
}

.privacy-container,
.cookies-container {
   max-width: 1200px;
    margin: 0 auto;
}

.privacy-container h2,
.cookies-container h2 {
  font-size:    2.8rem;
        color: #2c3e50;
  margin-bottom: 1.5rem;
   font-weight: 700;
    text-align: center;
}

.privacy-container h3,
.cookies-container h3 {
    font-size: 1.6rem;
    color: #2c3e50;
  margin   :   2rem 0 1rem;
	font-weight: 600;
}

.privacy-container p,
.cookies-container p {
    font-size: 1.1rem;
  color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}@media (max-width: 768px) {
    .privacy-section,
    .cookies-section {
        padding: 3rem 1rem;
    }

    .privacy-container h2,
    .cookies-container h2 {
        font-size: 2.2rem;
    }

    .privacy-container h3,
    .cookies-container h3 {
        font-size: 1.4rem;
    }

    .privacy-container p,
    .cookies-container p {
        font-size: 1rem;
    }
}