*
	{
  margin   :0;
    padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
  color: #333;
}

.navigation-wrapper {
   background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
   position: fixed;
   width: 100%;
    top: 0;
   z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
    display: flex;
  justify-content: space-between;
  align-items: center;
      padding: 1rem 2rem;
}

.logo-section .nav-logo {
   height: 45px;
     width: auto;
}

.menu-items {
     display: flex;
        gap :        2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
  transition: color 0.3s ease;
	
}

.nav-link:hover {
    color: #2c5aa0;
}

.burger-menu {
       display: none;
    flex-direction: column;
    cursor     :  pointer;
    gap: 4px;
     }

.burger-menu span {
   width: 25px;
  height: 3px;
    background: #333;
   transition: 0.3s; 

}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-section {
   padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.hero-content {

	    max-width: 1200px;
   margin   :        0 auto;
  display: grid;
    grid-template-columns:        1fr 1fr;
   gap: 4rem;
                    align-items :center;}

.hero-text h1 {
  font-size  :        3rem;
  color  :#1a365d;
  margin-bottom: 1.5rem;
     line-height: 1.2;
}

.hero-description {
     font-size: 1.2rem;
   color: #4a5568;
	 margin-bottom: 2rem;
	}

.hero-actions {
   display: flex;
  gap: 1rem;
}

.primary-btn, .secondary-btn    {
   padding: 12px 24px;
     text-decoration: none;
    border-radius: 6px;
	font-weight: 600;
   transition: all 0.3s ease;
}

.primary-btn {
   background:     #2c5aa0;
    color: white;
}

.primary-btn:hover {
   background: #1e3a6f;
  transform: translateY(-2px);
}

.secondary-btn  
  {
  background: transparent;
   color: #2c5aa0;
  border: 2px solid #2c5aa0;
	
}

.secondary-btn:hover    {
  background: #2c5aa0;
  color: white;
}

.hero-image img {
   width: 100%;
	height:       auto;
  border-radius   :   12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.services-section {
    padding: 80px 2rem;
   background: #fff;
}

.container {
  max-width: 1200px;
   margin: 0 auto;
}

.services-section h2

{
  text-align: center;
  font-size: 2.5rem;
  color: #1a365d;
   margin-bottom: 3rem;
}

.services-grid     {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
    background: #f7fafc;
    padding: 2rem;
   border-radius    :    12px;
  text-align  :     center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px 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.5rem;
   color: #2d3748;
	margin-bottom: 1rem;
     }

.service-card p {
	 line-height: 1.7;
    color: #4a5568;
}

.expertise-section {
    padding: 80px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color :       white;
}

.expertise-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
                    gap: 4rem;
   align-items: center;
}

.expertise-text h2 {
   margin-bottom: 1.5rem;
    font-size:2.5rem;
}

.expertise-text p {


  font-size: 1.1rem;
	margin-bottom: 2rem;
    opacity: 0.9;
     }

.expertise-list {
  list-style: none;
}

.expertise-list li {
  padding     :        0.5rem 0;
   position: relative;
    padding-left: 1.5rem; 

}

.expertise-list li:before {
  content: '✓';
  position: absolute;
    left    :  0;
    color: #68d391;
  font-weight: bold;
}

.expertise-image img {
	 width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); 

}

.cta-section {


   padding: 80px 2rem;
    background: #1a365d;
   color: white;
  text-align: center;
     }

.cta-content h2 {
   font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
         margin-bottom   :    2rem;
     opacity: 0.9;
}

.cta-button {
  display: inline-block;
               background: #68d391;
	color: #1a365d;
	padding: 15px 30px;
    text-decoration: none;
                    border-radius: 8px;
  font-weight: 700;
    font-size    :     1.1rem;
	transition: all 0.3s ease;
}

.cta-button:hover		{
   background: #48bb78;
  transform: translateY(-3px);
}

.contact-section {
    background: #f7fafc;
  padding: 80px 2rem;
}

.contact-section h2 {
  text-align:       center;
   font-size: 2.5rem;
    color: #1a365d;
  margin-bottom   :     3rem;
}

.contact-wrapper {
    display: grid;
          grid-template-columns:   1fr 2fr;
     gap   :  4rem;
}

.contact-info h3 {
      color :    #2d3748;
	margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #2c5aa0;
    display: block;
   margin-bottom: 0.5rem;

}

.contact-form {
   background: white;
   padding: 2rem;
    border-radius:12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
	  display: block;
   margin-bottom: 0.5rem;
     color: #2d3748;
  font-weight: 500;

}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 12px;
    border: 2px solid #e2e8f0;
   border-radius: 6px;
  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: #2c5aa0;
}

.submit-btn {
   background:      #2c5aa0;
   color: white;
  padding: 15px 30px;
 border: none;
   -webkit-border-radius: 6px;
   border-radius: 6px;
    font-size: 1.1rem;
   font-weight: 600;
   cursor: pointer;
  transition: all 0.3s ease;
         width: 100%;

}

.submit-btn:hover {
	background: #1e3a6f;
  transform: translateY(-2px);
}

.footer-section {
   background: #2d3748;
	 color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
   display: grid;
   grid-template-columns: auto 1fr;
    gap: 3rem;
    margin-bottom  : 2rem;
}

.footer-logo img {

  height: 50px;

}

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
		gap: 2rem;
}  

.footer-column h4
	{
   margin-bottom: 1rem;
       color: #e2e8f0;
}

.footer-column ul 
 {
	 list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
	 text-decoration: none;
    color: #a0aec0;
  transition: color 0.3s ease;
	
}


.footer-column a:hover {
   color: #68d391;
}

.footer-bottom {
    border-top  :    1px solid #4a5568;
  padding-top: 1rem;
  text-align:   center;
	 color: #a0aec0;

}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .menu-items.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 100px 1rem 60px;
    }
    
    .services-section,
    .expertise-section,
    .cta-section,
    .contact-section {
        padding: 60px 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .primary-btn,
    .secondary-btn {
        text-align: center;
    }
}img {
   opacity: 0;
   transition: opacity 0.3s ease;
}

img.loaded {
	opacity: 1;
}

.about-hero {
  background: linear-gradient(135deg, #1a365d 0%, #2c5aa0 100%);
  color: white;
  padding: 140px 2rem 80px;
               text-align: center;
}

.about-hero-content h1 {
   font-size: 3rem;
    margin-bottom: 1.5rem;
					line-height     :   1.2;


}

.hero-subtitle {
   font-size: 1.3rem;
	opacity:   0.9;
  max-width: 800px;
    margin: 0 auto;
}

.story-section {
   padding: 80px 2rem;
   background :        #f8fafc;
}

.story-content {
   display: grid;
   grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
     align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
          color: #1a365d;
   margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color     :#4a5568;
   line-height: 1.7;
	font-size: 1.1rem;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.methodology-section {
         padding: 80px 2rem;
  background: #fff;
}

.methodology-section h2 {
  text-align: center;
    font-size: 2.5rem;
   color     :      #1a365d;
  margin-bottom: 3rem; 

     }

.methodology-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.method-card {
	  background: #f7fafc;
	    padding: 2.5rem 2rem;
	   border-radius: 15px;
	   text-align: center;
	   position: relative;
	   transition: all 0.4s ease;
	   border: 2px solid transparent;}

.method-card:hover {
    border-color     :     #2c5aa0;
  box-shadow: 0 15px 35px rgba(44, 90, 160, 0.15);
}

.method-number
	{
    background: #2c5aa0;
    color: white;
	width: 60px;
   height: 60px;
   border-radius: 50%;
   display: flex;
	align-items: center;
  justify-content: center;
    font-size     :   1.5rem;
  font-weight: 700;
    margin: 0 auto 1.5rem;
}  

.method-card h3 {

	    font-size: 1.4rem;

	    color: #2d3748;

	   margin-bottom: 1rem;
}

.method-card p {
   color: #4a5568;
	line-height: 1.6;
}

.expertise-details {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.expertise-grid

{
   display: grid;
	grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
     align-items: center;
}

.expertise-info h2	{
   font-size:2.5rem;
   margin-bottom: 2.5rem;
}

.expertise-items {
		display: grid;
   gap: 1.5rem;
}

.expertise-item h4 {
      font-size: 1.3rem;
    margin-bottom: 0.5rem;
	 color:   #e2e8f0;
}

.expertise-item p {
    opacity: 0.9;
   line-height: 1.6;
}

.expertise-visual img{


  width: 100%;
	border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);


}



.values-section {
    padding:      80px 2rem;
  background   :#f8fafc;
}

.values-section h2  
  {
    text-align: center;
  font-size: 2.5rem;
   color: #1a365d;
   margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; 
	
}

.value-item {
  background: white;
   padding: 2rem;
   border-radius     :    12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   border-left: 4px solid #2c5aa0;
}

.value-item h3 {
  color: #2c5aa0;
   font-size: 1.4rem;
  margin-bottom: 1rem;
}

.value-item p {
   color: #4a5568;
 line-height:     1.6;
}

.team-intro {

  padding: 80px 2rem;
   background: #fff;}

.team-content {
      display: grid;
    grid-template-columns    :      1.2fr 1fr;
               gap: 4rem;
    align-items: center;
}

.team-text h2 {

	    font-size: 2.5rem;
    color: #1a365d;
   margin-bottom :  1.5rem;
	}

.team-text p {

	 color: #4a5568;
          line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
	}

.team-stats {
	display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-top: 2rem;
}

.stat-item {
   text-align    :        center;
}

.stat-number {

	               display :  block;
   font-size:  2.5rem;
  font-weight: 700;
    color: #2c5aa0;
	line-height: 1;}

.stat-label {
  font-size: 0.9rem;
	    color: #4a5568;
	    text-transform: uppercase;
	  letter-spacing: 0.5px;
}

.team-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.thankyou-main {

	   padding: 140px 2rem 80px;
  min-height: 80vh;
  background: linear-gradient(135deg, #f8fafc 0%, #e3f2fd 100%);
}

.thankyou-content{
    max-width: 800px;
          margin :       0 auto;
  text-align: center;
}

.success-icon
{


   margin-bottom: 2rem;


}

.checkmark-circle {
    width: 80px;
      height: 80px;
  border: 3px solid #68d391;
    border-radius: 50%;
   position: relative;
               margin: 0 auto;
	background: #68d391;
}

.checkmark {
    width: 20px;
   height    :        35px;
  border: solid white;
   border-width: 0 4px 4px 0;
  transform: rotate(45deg);
    position: absolute;
    top: 15px;
    left: 25px;
  opacity: 0;
}@keyframes drawCheck {
    0% { opacity: 0; transform: rotate(45deg) scale(0); }
    50% { opacity: 1; transform: rotate(45deg) scale(1.2); }
    100% { opacity: 1; transform: rotate(45deg) scale(1); }
}.thankyou-text h1 {
      font-size: 3rem;
   color     :   #1a365d;
  margin-bottom    :   1rem;
} 

.success-message {
    font-size: 1.2rem;
   color: #4a5568;
   margin-bottom: 3rem;
	line-height: 1.6;
}

.next-steps {
  margin: 4rem 0;
  text-align: left;
}

.next-steps h2 {
      color :       #1a365d;

	    margin-bottom: 2rem;

	    font-size: 2rem;

	   text-align: center;


}

.steps-grid {
	    display: grid;
  gap: 2rem;
}

.step-item {
   display: grid;
	 grid-template-columns     :     auto 1fr;
    gap: 1.5rem;
  align-items: start;
   background: white;
	 padding: 2rem;
  border-radius :        12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-number {
   width  :        40px;
   height: 40px;
  background    :  #2c5aa0;
        color: white;
  border-radius :   50%;
   display  :     flex;
  align-items: center;
    justify-content:        center;
   font-weight: 700;
   font-size: 1.2rem;
}

.step-content h3 {
    color: #2d3748;
  margin-bottom: 0.5rem;
               font-size: 1.2rem;
}

.step-content p {
    color: #4a5568;
  line-height: 1.6;

}

.what-expect {

	  margin   :    4rem 0;}

.what-expect h2 {

  font-size: 2rem;
	 color: #1a365d;
  margin-bottom     :   2rem;
   text-align: center;
     }

.expect-content {
    display: grid;
  grid-template-columns: 1.5fr 1fr;
               gap   :    3rem;
    align-items: center;
	background: white;
    padding: 2.5rem;
    border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);



}

.expect-list{
    list-style: none;
   padding: 0;
}

.expect-list li {
    padding: 0.8rem 0;
  position: relative;
   padding-left: 2rem;
	color: #4a5568;
    line-height: 1.6;
}

.expect-list li:before {
  content: '✓';
   position: absolute;
    left: 0;
    color: #68d391;
   font-weight: bold;
               font-size: 1.2rem;
}

.expect-image img {
   width:  100%;
    border-radius: 10px;


}

.contact-reminder {
   margin: 3rem 0;
    padding: 2rem;
  border-left: 4px solid #2c5aa0;
	 background: #e3f2fd;
  border-radius: 12px;
}

.contact-reminder h3 {
     color  :    #1a365d;
    margin-bottom: 0.5rem;
     }

.contact-reminder p  {
	color: #4a5568;
  margin: 0;
}

.action-buttons {

	  margin-top  :       3rem;
    display: flex;
     gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
     }

.nav-link.active {
  color: #2c5aa0;
    font-weight     :    600;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .story-content,
    .expertise-grid,
    .team-content,
    .expect-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .methodology-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .thankyou-text h1 {
        font-size: 2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .story-section,
    .methodology-section,
    .expertise-details,
    .values-section,
    .team-intro,
    .thankyou-main {
        padding: 80px 1rem 60px;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .expect-content {
        padding: 1.5rem;
    }
}.cookies-section,
.privacy-section {
   padding: 100px 0;
  background: var(--white);
}

.cookies-grid,
.privacy-grid  
  {
    display: grid;
       grid-template-columns: 1fr;
      gap    :       2rem;
}

.cookies-texte h2,
.privacy-texte h2 {
   font-size: 2.5rem;
	    margin-bottom: 1.5rem;
	  color: var(--text-dark);
}

.cookies-texte p,
.privacy-texte p {
  color: var(--text-light);
   margin-bottom: 1.5rem;
   line-height: 1.7;
}@media (max-width: 768px) {
    .cookies-grid,
    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}