/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Header Styling */
  header {
    background: #444;
    color: white;
    padding: 15px 0;
  }
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo img {
    height: 40px; /* Logo plus petit */
    margin-right: 20px;
  }
  
  .title {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif; /* Police professionnelle */
    font-weight: 600;
    color: white; /* Titre EcoPneu en blanc */
    margin: 0;
    flex-grow: 1;
    text-align: center;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  nav ul li a:hover {
    color: #f0a500; /* Couleur dorée pour l'effet hover */
  }
  
  /* Ajustements de positionnement */
  .header-container .logo {
    margin-right: 15px;
  }
  
  .header-container nav {
    margin-left: 15px;
  }
  
  /* Spacing adjustments */
  .header-container .logo {
    margin-right: 15px;
  }
  
  .header-container nav {
    margin-left: 15px;
  }
  
  
  /* Hero Section */
/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f7f7f7;
    padding: 50px 20px;
    border-radius: 10px;
  }
  
  .hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 30px;
  }
  
  .hero .text {
    max-width: 50%;
  }
  
  .hero .text h2 {
    font-size: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .hero .text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .hero .btn {
    display: inline-block;
    background: #444;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
  }
  
  .hero .btn:hover {
    background: #f0a500;
  }
  
  .hero .image img {
    max-width: 300px;
    border-radius: 10px;
  }
  
  
  /* Features Section */
  .features {
    background: #f0f0f0;
    padding: 50px 20px;
  }
  
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: center;
  }
  
  .features img {
    height: 50px;
  }
  
/* Pricing Section */
.pricing {
    text-align: center;
    padding: 50px 20px;
    background: #f7f7f7;
    border-radius: 10px;
  }
  
  .pricing h2 {
    font-size: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .pricing-table {
    margin: 0 auto;
    width: 80%;
    max-width: 600px;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .pricing-table thead {
    background: #444; /* Couleur sombre pour démarquer */
    color: white;
    text-align: left;
  }
  
  .pricing-table th {
    font-weight: bold;
    text-transform: uppercase;
    padding: 15px;
    font-size: 1.1rem;
    color: #ffffff; /* Le texte des en-têtes sera blanc */
    background-color: #444; /* Couleur de fond sombre pour contraste */
  }
  
  
  .pricing-table th:first-child {
    border-right: 1px solid #ccc; /* Ligne pour séparation */
  }
  
  .pricing-table td {
    padding: 15px;
    text-align: left;
    font-size: 1rem;
    color: #333;
  }
  
  .pricing-table tr:nth-child(even) {
    background: #f9f9f9;
  }
  
  .pricing-table tr:nth-child(odd) {
    background: #ffffff;
  }
  
  .note {
    margin-top: 15px;
    font-size: 1rem;
    font-style: italic;
    color: #666;
  }
  
  
  
  /* Contact Section */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
  }
  
  .contact form input,
  .contact form textarea,
  .contact form button {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
  }
  
  .contact form button {
    background: #444;
    color: white;
    border: none;
    cursor: pointer;
  }
  
  /* Footer */
  footer {
    background: #444;
    color: white;
    text-align: center;
    padding: 20px 0;
  }
  
  footer img {
    height: 40px;
    margin-bottom: 10px;
  }
  /* Media Queries for Responsiveness */

/* Petits écrans : Smartphones (max-width: 768px) */
@media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      text-align: center;
    }
  
    .header-container .title {
      font-size: 2rem;
      margin: 10px 0;
    }
  
    nav ul {
      flex-direction: column;
      gap: 10px;
    }
  
    .hero {
      flex-direction: column;
    }
  
    .hero .text {
      max-width: 100%;
      text-align: center;
    }
  
    .hero .image img {
      max-width: 80%;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .pricing-table {
      width: 100%;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Tablettes : Moyens écrans (max-width: 1024px) */
  @media (max-width: 1024px) {
    .header-container .title {
      font-size: 2.2rem;
    }
  
    .hero .text h2 {
      font-size: 2.2rem;
    }
  
    .hero .text p {
      font-size: 1.1rem;
    }
  
    .pricing-table {
      width: 90%;
    }
  }
  
  /* Grands écrans : Écrans larges (min-width: 1440px) */
  @media (min-width: 1440px) {
    .container {
      max-width: 1400px;
    }
  
    .hero .text h2 {
      font-size: 3rem;
    }
  
    .hero .text p {
      font-size: 1.5rem;
    }
  
    .pricing-table {
      font-size: 1.1rem;
    }
  }
  