body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      background-color: #f8f8f8;
      color: #333;
    }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: auto;
      padding: 20px;
      background-color: #fff;
    }

    header, footer {
      background-color: #003366;
      color: #fff;
      padding: 20px 0;
    }

    header h1, header h2, footer p {
      margin: 0;
    }

    .cta-buttons {
      text-align: center;
      margin: 20px 0;
    }

    .cta-buttons a {
      text-decoration: none;
      padding: 15px 25px;
      margin: 10px;
      background-color: #007acc;
      color: #fff;
      border-radius: 5px;
      font-weight: bold;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .cta-buttons a:hover {
      transform: scale(1.05);
      background-color: #005a99;
    }

    section {
      margin-bottom: 40px;
    }

    h2 {
      color: #000080;
    }

    h1 {
      color: #003366;
    }

    .contact-form input, .contact-form textarea, .contact-form button {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    
    .contact-form button {
      background-color: #007acc;
      color: #fff;
      border: none;
      font-size: 16px;
      cursor: pointer;
    }






    .testimonial, .partners {
      background-color: #e6f2ff;
      padding: 20px;
      border-radius: 5px;
      margin: 20px 0;
    }

    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .header-logo {
      height: 150px;
    }

    .header-text {
      text-align: left;
    }

    .footer-card {
      max-width: 1200px;
      margin: auto;
      padding: 20px;
      background-color: #00264d;
      border-radius: 10px;
      color: #fff;
      display: flex;
      flex-direction: column;
      gap: 10px;
      text-align: center;
    }

    .footer-card h3 {
      margin-bottom: 10px;
      color: #f1c40f;
    }

    .footer-card p {
      margin: 5px 0;
    }

    .footer-social a {
      margin: 0 10px;
    }

    @media (min-width: 600px) {
      .footer-card {
        flex-direction: row;
        justify-content: space-around;
        text-align: left;
      }

      .footer-social a img {
        width: 30px;
        height: 30px;
      }

      #map iframe {
        height: 400px;
      }
    }

    @media (max-width: 600px) {
      .footer-card {
        flex-direction: column;
        text-align: center;
      }

      .footer-card div {
        margin-bottom: 20px;
      }

      #map iframe {
        width: 100%;
        height: 300px;
      }

      .cta-buttons a {
        width: 100%;
        padding: 12px;
        font-size: 14px;
      }

      .whatsapp-button {
        font-size: 14px;
        padding: 10px 15px;
      }

      .floating-button {
        font-size: 14px;
        padding: 12px 20px;
      }
    }

    /* Floating Contact Button */
    .floating-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      background-color: #007acc;
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 15px 25px;
      font-size: 16px;
      font-weight: bold;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      z-index: 1000;
    }

    .floating-button:hover {
      background-color: #005a99;
      transform: scale(1.05);
    }

    .whatsapp-button {
      position: fixed;
      bottom: 80px;
      right: 20px;
      background-color: #25D366;
      color: white;
      border-radius: 50px;
      padding: 12px 20px;
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      z-index: 1000;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .whatsapp-button:hover {
      background-color: #1ebc57;
      transform: scale(1.05);
    }

    .cookie-banner {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: #003366;
      color: white;
      padding: 15px 20px;
      display: none;
      text-align: center;
      z-index: 1000;
      box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .cookie-banner a {
      color: #fff;
      text-decoration: underline;
    }
    
    .cookie-banner button {
      margin-left: 15px;
      padding: 8px 16px;
      background-color: #007acc;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
    }
    
    .cookie-banner button:hover {
      background-color: #005a99;
    }
    