* {
   margin    : 0;
    padding: 0;
   box-sizing   :        border-box;
}

body
	{

  font-family: 'Arial', sans-serif;
         line-height: 1.6;
    color: #333;
    background: #ffffff;

}



.main-navigation {
  position: fixed;
    top: 0;
	width   :   100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index:       1000;
   border-bottom: 1px solid #e0e0e0;
}

.nav-wrapper {
	max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
	align-items: center;
  height: 70px;
}

.brand-logo {

      height: 45px;
    width: auto;
	}

.nav-links{
  gap: 30px;
    display: flex;
}

.nav-link


{
  text-decoration: none;
    color: #333;
  font-weight    :      500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-link::after {
  content: '';
   position: absolute;
   width: 0;
   height: 2px;
    bottom: -5px;
   left:  0;
  background-color: #2563eb;
	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: #333;
	 transition: 0.3s;
}

.mobile-menu {
    display: none;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
	
}  

.mobile-link {
   display: block;
    padding: 15px 20px;
   text-decoration: none;
   color: #333;
   border-bottom: 1px solid #f0f0f0;
}

.hero-section {
	margin-top: 70px;
  min-height: 90vh;
  display: flex;
    align-items   :  center;
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
    padding: 80px 0;
}

.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-size: 3.2rem;
  font-weight: 700;
   color: #1e293b;
    margin-bottom: 20px;
   line-height     :1.2;
}

.hero-subtitle {
   font-size: 1.2rem;
   color: #64748b;
   margin-bottom: 40px;
  line-height   :  1.6;
}

.hero-buttons {

   display: flex;
   gap: 20px;
    flex-wrap  : wrap;

}

.btn-primary, .btn-secondary {
  padding: 15px 30px;
   -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
	border-radius :8px;
    -moz-transition: all 0.3s ease;
   text-decoration: none;
  font-weight     :   600;
   transition: all 0.3s ease;
   border: 2px solid transparent;
}

.btn-primary {

	  background: #2563eb;
  color: white;
     }

.btn-primary:hover {
   background: #1d4ed8;
  transform: translateY(-2px);
}

.btn-secondary {
   background :        transparent;

	    color: #2563eb;

	     border-color: #2563eb; 
	
}

.btn-secondary:hover {
   background: #2563eb;
  color :      white;
}

.hero-image img {
	      width: 100%;
  height   :   auto;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);}


.value-proposition {
   padding: 100px 0;
  background: white;
}

.container {
	max-width: 1200px;
    margin: 0 auto;
    padding  :       0 20px;
}

.value-proposition h2 {
     text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
  margin-bottom: 60px;
     }

.value-grid {
	     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 40px;}

.value-item {
  padding: 40px 30px;
  background: #f8faff;
    border-radius: 12px;
	text-align: center;
   transition: transform 0.3s ease;
}

.value-item:hover	{
  transform: translateY(-5px);}

.value-item h3 {
     font-size: 1.5rem;
    color   :#2563eb;
  margin-bottom :    20px;
}

.value-item p {
   color: #64748b; 
		line-height: 1.6;


}

.services-section {
      padding: 100px 0;
	background: #f8faff;
     }

.services-section h2 {
	text-align: center;
  font-size: 2.5rem;
    color :  #1e293b;
    margin-bottom: 60px;
}

.services-container {
   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 10px 30px rgba(0,0,0,0.1);
   transition   : transform 0.3s ease;


}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card img {
    width   :        100%;
               height: 250px;
   object-fit: cover;
	
}

.service-content {
                    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
  color  :      #1e293b;
  margin-bottom: 15px;
}

.service-content p {
	color: #64748b;

  margin-bottom:       20px;
}


.service-features {
   list-style: none;
}

.service-features li {
   padding   : 5px 0;
  color: #64748b;
    position: relative;
   padding-left: 20px;
}

.service-features li::before {
	  content: '✓';
   position: absolute;
    left: 0;
  color    :#2563eb;
  font-weight: bold;
     }

.cta-section {
   padding: 100px 0;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: white;

}

.cta-content {
  align-items: center;
	   display: grid;
	  padding     :        0 20px;
	  margin-bottom: 50px;
	    gap: 60px;
	  margin: 0 auto;
	   grid-template-columns: 1fr 1fr;
	   max-width: 1200px;
}

.cta-text h2 {
   font-size: 2.5rem;
   margin-bottom: 20px;
}

.cta-text p {
    font-size: 1.1rem;
   margin-bottom: 40px;
        opacity: 0.9;
}

.cta-stats {
  display: flex;
   gap: 40px;
	flex-wrap  :  wrap;
}

.stat-item {
  text-align: center;

}

.stat-number {
       display: block;
   font-size: 2.5rem;
    font-weight: bold;
   color: #fbbf24;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}


.cta-image img  
  {
   width: 100%;
  border-radius :  12px;
}

.cta-action {
   text-align: center;
  max-width   :    1200px;
    margin: 0 auto;
	 padding: 0 20px;
}

.btn-cta {
	padding: 20px 40px;
	font-weight: 700;
  background: #fbbf24;
    color: #1e293b;
  text-decoration: none;
    font-size: 1.1rem;
   border-radius: 50px;
   display: inline-block;
   transition   :  all 0.3s ease; 
	
}

.btn-cta:hover {

	   background: #f59e0b;
  transform: translateY(-3px);
     }

.testimonials {
   padding: 100px 0;
   background: white;
}

.testimonials h2   {
   text-align: center;

	font-size: 2.5rem;

    color: #1e293b;

    margin-bottom: 60px;
}

.testimonial-grid	{
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	   gap: 40px;
}



.testimonial-card {
  background: #f8faff;
    padding: 40px 30px;
    border-radius: 12px;
   border-left: 4px solid #2563eb;
}

.testimonial-card blockquote    {

    font-size: 1.1rem;
  color: #1e293b;
    margin-bottom: 20px;
  font-style: italic;
   line-height: 1.6;
}

.testimonial-card cite {
  color: #2563eb;
  font-weight: 600;
    font-style: normal;
}


.contact-section {
   padding: 100px 0;
               background: #f8faff;
}

.contact-content    {
    max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
	display: grid;
   grid-template-columns : 1fr 1fr;
   gap: 60px;
}

.contact-info h2 {
        font-size: 2.2rem;
  color: #1e293b;
   margin-bottom: 20px;
}

.contact-info p {

    color    :   #64748b;
    font-size: 1.1rem;
	margin-bottom: 40px;


}

.contact-details {

	    display: flex;
   flex-direction: column;
   gap: 30px;
	}

.contact-item h4  
  {
    color: #2563eb;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-item p {
   margin: 0;
     color: #64748b;
}

.contact-form {
    background: white;
    padding: 40px;
	border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 25px;
}

.form-group label {
   display: block;
	     margin-bottom: 8px;
	    color  :      #1e293b;
	  font-weight: 600;
}  

.form-group input,
.form-group select,
.form-group textarea
{
   width     :  100%;
   padding: 12px 15px;
  border: 2px solid #e2e8f0;
	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: #2563eb;
}

.submit-btn {
  width: 100%;
   padding     :    15px;
    background: #2563eb;
  color :       white;
  border: none;
	border-radius: 8px;
    font-size: 1.1rem;
  font-weight : 600;
  cursor: pointer;
   transition: background 0.3s ease;
}

.submit-btn:hover {
   background: #1d4ed8;
}

.main-footer {
  background :        #1e293b;
	 color: white;
  padding: 60px 0 20px;
}

.footer-content {
	 max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
   grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
   margin-bottom: 40px;
}

.footer-logo {
   height: 40px;
    width  :       auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-section p {
  color: #cbd5e1;
    line-height: 1.6;
}

.footer-section h4

{
    color   :       white;
      margin-bottom   :   20px;
  font-size: 1.2rem;


}

.footer-links {
  list-style: none;
}

.footer-links li {
   margin-bottom  :10px;
}

.footer-links a {
   color: #cbd5e1;
   text-decoration: none;
   transition: color 0.3s ease;
}  

.footer-links a:hover {
   	color   :  #2563eb;

}

.footer-contact p {

   margin-bottom: 10px;
	 color: #cbd5e1;

}

.footer-bottom {
    max-width: 1200px;
  margin   :        0 auto;
    padding: 20px;
    border-top: 1px solid #334155;
        text-align: center;
   color: #94a3b8;


}@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content,
    .cta-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .cta-stats {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .value-grid,
    .services-container,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}.nav-link.active {
  color :      #2563eb;
}

.nav-link.active::after {
	    width: 100%;
}

.about-hero {
  margin-top: 70px;
   min-height: 60vh;
  background: linear-gradient(rgba(37, 99, 235, 0.8), rgba(29, 78, 216, 0.8)), 
                url('archive/European_expansion_strategy_2.webp') center/cover;
    display: flex;
   align-items: center;
    position     :       relative;
}



.hero-overlay   {
  background: rgba(0, 0, 0, 0.3);
    width :  100%;
    height: 100%;
  display: flex;
	align-items    :     center;

}

.about-hero-content {
   max-width: 1200px;
                    margin: 0 auto;
   padding: 0 20px;
  color: white;
    text-align: center;
}

.about-hero-content h1

{
    font-size: 3rem;
   font-weight: 700;
    margin-bottom: 20px;
     line-height     :     1.2;
}

.about-subtitle {
  font-size: 1.3rem;
   opacity: 0.95;
    max-width  :        800px;
  margin: 0 auto;
  line-height: 1.6;
}

.story-section {
   padding: 100px 0;
	 background: white;
}


.story-content    {
  display  :grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 30px;
}

.story-text p {

	   color: #64748b;
                    font-size   :     1.1rem;
          line-height: 1.7;
    margin-bottom: 25px;


}

.story-image img {

	 width: 100%;
	 border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
     }

.values-section {
   padding: 100px 0;
     background  :  #f8faff;
}

.values-section h2 {

   text-align: center;

	    font-size: 2.5rem;

	    color: #1e293b;

	  margin-bottom: 60px;


}


.values-grid {
	 display    :  grid;

	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	  gap    :     40px;
}

.value-card {
         background    : white;
    padding: 40px 30px;
               border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
	transition: transform 0.3s ease;
}

.value-card:hover   {
  transform: translateY(-8px);
}

.value-icon {
   margin-bottom     :25px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
    margin: 0 auto;
   color: white;
  font-size: 1.8rem;
  font-weight: bold;
}

.value-card h3 {
  margin-bottom: 15px;
    font-size: 1.4rem;
    color: #1e293b;
}

.value-card p {
   color: #64748b;
	  line-height: 1.6;
}

.expertise-section {
	padding: 100px 0;
	background: white;
}

.expertise-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
                    gap: 60px;
	align-items: center;
}

.expertise-image img {
  width: 100%;
  border-radius :12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.expertise-text h2 {
  font-size :     2.5rem;
  color: #1e293b;
   margin-bottom: 30px;
}

.expertise-stats {
   display: flex;
    gap: 30px;
	margin-bottom: 30px;
	 flex-wrap: wrap;


}

.stat-highlight {
   text-align: center;
   flex: 1;
         min-width: 120px;
}

.stat-big {


  display: block;
	font-size: 2.2rem;
    font-weight: bold;
    color: #2563eb;
  margin-bottom :      5px;


}

.stat-highlight p     {
       color: #64748b;
   font-size: 0.9rem;
   margin    :      0;
}

.expertise-text p {
	    color: #64748b;
    font-size: 1.1rem;
  line-height   :      1.7;
  margin-bottom: 20px;
}

.methodology-section {
   padding: 100px 0;
   background: #f8faff;
}

.methodology-section h2 {
  text-align: center;
	font-size:   2.5rem;
  color: #1e293b;
   margin-bottom: 60px;
}

.methodology-steps {

  display  :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
     }

.step-item {
   background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   position: relative;
    transition    :      transform 0.3s ease;
}

.step-item:hover {
  transform: translateY(-5px);
}


.step-number {
   position: absolute;
    top: -20px;
  left: 30px;
    width: 50px;
    height: 50px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
    border-radius: 50%;
   display: flex;
  align-items: center;
   justify-content   :  center;
  color: white;
   font-weight: bold;
  font-size: 1.2rem;
}



.step-content {
    padding-top: 20px;

}

.step-content h3 {
	 font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 15px;
}

.step-content p {
    color: #64748b;
   line-height: 1.6;
}

.team-section {
	padding: 100px 0;
     background:white;
}

.team-section h2 {
   text-align  : center;
  font-size: 2.5rem;
    color: #1e293b;
  margin-bottom: 30px; 

}

.team-intro {
    text-align: center;
  color: #64748b;
   font-size: 1.2rem;
   margin-bottom : 60px;
   max-width: 800px;
	 margin-left: auto;
  margin-right:     auto; 

}

.team-highlights {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px;
}

.team-card {
  background     :  #f8faff;
	padding: 40px 30px;
   border-radius  :  12px;
   border-left: 4px solid #2563eb;
}

.team-card h3

{
   font-size: 1.4rem;
  margin-bottom: 15px;
   color: #2563eb;
}

.team-card p {
  color: #64748b;
   line-height: 1.6;
}

.commitment-section {
   padding: 100px 0;
   background: #f8faff;
}

.commitment-content {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
	align-items: center;
}

.commitment-text h2 {
    font-size: 2.5rem;
	 color: #1e293b;
   margin-bottom :       25px;
}

.commitment-text > p

{
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height :      1.7;
   color: #64748b; 
	
}

.commitment-points {
    display: flex;
    flex-direction: column;
  gap: 30px; 
	
} 

.commitment-point h4  
  {
   color: #2563eb;
   font-size: 1.2rem;
  margin-bottom: 10px;
}

.commitment-point p {
   color: #64748b;
    line-height: 1.6;
   margin: 0;
}

.commitment-image img{
	  width: 100%;
       border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.thankyou-hero {
   margin-top   :     70px;
   padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #e8f2ff 100%);
	 min-height: 70vh;
   display: flex;
 align-items:  center;
}

.thankyou-content {
  max-width:  800px;
    margin: 0 auto;
   text-align: center; 

}

.success-icon {
  margin-bottom: 40px; 
	
}

.checkmark-circle {
   width     :      80px;
	height: 80px;
         border-radius: 50%;
   background: #10b981;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
    position: relative;
  animation: scaleIn 0.6s ease-out;
}

.checkmark {
  width: 25px;
  height: 15px;
         border    :     3px solid white;
   border-top: none;
    border-right: none;
  transform: rotate(-45deg);
    margin-top: -5px;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.thankyou-content h1 {
    font-size: 3rem;
   color :        #1e293b;
   margin-bottom: 20px;
    font-weight: 700;
}

.thankyou-subtitle {
   font-size: 1.2rem;
  color: #64748b;
    margin-bottom: 50px;
  line-height: 1.6;
}

.next-steps {
  margin-bottom     :       50px;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 2.2rem;
   color    :      #1e293b;
   margin-bottom: 40px;
}

.steps-timeline	{
   flex-direction: column;
    display    :  flex;
   gap: 30px;
}

.timeline-step {
   display: flex;
   align-items: flex-start;
   gap  :       20px;
   padding: 25px;
   background: white;
      border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-marker {
    width: 40px;
   height   :     40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
   display: flex;
	align-items: center;
    justify-content    :        center;
   font-weight  :bold;
  flex-shrink: 0;

}

.step-marker.active {
  background: #2563eb;
  color: white;
}

.step-info h3 {

	  color: #1e293b;
    margin-bottom: 8px;
					font-size: 1.2rem;
	
     }

.step-info p {
   color: #64748b;
  margin-bottom: 10px;
    line-height: 1.5;
}


.step-time 
 {
    color    : #2563eb;
  font-weight: 600;
    font-size: 0.9rem;
}

.contact-reminder {
	 background: white;
    padding: 30px;
  border-radius :      12px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: left;
}  

.contact-reminder h3 {
      color: #1e293b;
  margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-reminder p {
   color: #64748b;
   margin-bottom  :        20px;
  line-height    :    1.6;
}

.contact-details p {
   color: #1e293b;
  margin-bottom     :     8px; 
	
}

.cta-buttons {
    display: flex;
   gap: 20px;
   justify-content: center;
	 flex-wrap: wrap;
}

.thankyou-image {
   margin-top: 40px;
}

.thankyou-image img {
    width: 100%;
        max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.resources-section   {


   padding: 80px 0;
   background: white;


}

.resources-section h2 {
  text-align: center;
    font-size: 2.3rem;
  color: #1e293b;
  margin-bottom: 20px;
}

.resources-intro {
   text-align: center;
   color: #64748b;
   font-size: 1.1rem;
    margin-bottom: 50px;
    max-width  :  700px;
	margin-left: auto;
   margin-right: auto;
}

.resources-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
  background: #f8faff;
    border-radius: 12px;
    overflow: hidden;
   transition: transform 0.3s ease;
}

.resource-card:hover {
  transform: translateY(-5px);
}


.resource-card img {
    width: 100%;
    height     :        200px;
    object-fit: cover;
}

.resource-content     {
   padding: 25px;
}

.resource-content h3 {
         color: #1e293b;
     margin-bottom : 12px;
          font-size: 1.2rem;
}

.resource-content p {
    line-height:       1.6;
  color: #64748b;

}

.confidence-section {
    padding: 80px 0;
  background: #f8faff;
}

.confidence-section h2 {
   text-align:     center;
  font-size: 2.3rem;
  color: #1e293b;
	 margin-bottom: 50px;
}

.confidence-stats {
  display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 30px;
   margin-bottom: 50px;


}

.confidence-stat {
    text-align     :        center;
       background  :     white;
    padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.big-number {
  display: block;
    font-size: 2.5rem;
  font-weight    :    bold;
   color: #2563eb;
   margin-bottom: 15px;
}

.confidence-stat p  {

   color: #64748b;
  line-height: 1.5;
   margin: 0;


}

.testimonial-highlight {
  background: white;
  padding    : 40px;
   border-radius: 12px;
    border-left: 4px solid #2563eb;
    max-width: 800px;
  margin  :0 auto;
   text-align: center;
}

.testimonial-highlight blockquote	{
 font-size     : 1.2rem;
   color: #1e293b;
   font-style: italic;
    margin-bottom  :        20px;
	 line-height: 1.6;
}

.testimonial-highlight cite 
 {
  color: #2563eb;
	 font-weight: 600;
  font-style: normal;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .story-content,
    .expertise-content,
    .commitment-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expertise-stats {
        justify-content: center;
    }
    
    .methodology-steps {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.3rem;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-marker {
        margin: 0 auto;
    }
    
    .confidence-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .confidence-stats {
        grid-template-columns: 1fr;
    }
    
    .expertise-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .values-grid,
    .team-highlights,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}.cookies-section,
.privacy-section {


   padding: 100px 0;
   background: #f8faff;


}

.cookies-content,
.privacy-content {
	max-width: 800px;
    margin: 0 auto;
}

.cookies-content h3,
.privacy-content h3 {


  font-size: 1.8rem;
  color: #1e293b;
   margin: 30px 0 15px;

}

.cookies-content p,
.privacy-content p {
   color: #64748b;
  line-height: 1.6;
  margin-bottom :    20px;
}

.cookies-content ul,
.privacy-content ul {
  list-style: none;
   margin-bottom  :  20px;
}

.cookies-content ul li,
.privacy-content ul li {
  color: #64748b;
  padding: 10px 0;
  padding-left: 20px;
  position: relative; 

}

.cookies-content ul li::before,
.privacy-content ul li::before {
  content: '✓';
   position: absolute;
   left: 0;
   color: #2563eb;
   font-weight: bold;
}