body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    color: #000;
    font-weight: 700;
  }
  /* Prevent horizontal scrolling */
  html, body { width: 100%; }
  * { box-sizing: border-box; }

  /* ===== Header Section ===== */
  .header {
    background: rgba(0, 0, 0, 0.7);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    z-index: 10;
    padding: 10px 20px;
  }
  .logo-nav {
    display: flex;
    align-items: center;
  }
  .header img {
    max-height: 50px;
    height: auto;
    margin-right: 20px;
  }
  .navbar {
    display: flex;
  }
  .navbar a {
    font-family: 'Roboto', sans-serif;
    color: #F0F0F0;
    margin: 0 15px;
    text-decoration: none;
    font-size: 1.2rem;
  }
  .navbar a:hover {
    color: #1ab555;
    text-decoration: underline;
  }
  .language-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  .language-switcher .flag {
    width: 30px;
    height: 20px;
    border-radius: 3px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
  }
  .language-switcher .flag:hover {
    transform: scale(1.1);
  }

  /* ===== Main Banner / Intro Section ===== */
  .apollon-section {
    padding: 100px 20px 50px;
    text-align: center;
    background: url('../images/drone.jpg') no-repeat center/cover; /* Placeholder banner image */
    color: #fff;
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out;
  }
  .apollon-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
  }
  .apollon-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 10px auto;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 1);
  }
  
  /* ===== Services Section ===== */
  .services-section {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 50px 20px;
    background-color: #f7f7f7;
  }
  .service {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    animation: fadeIn 1s ease-out;
  }
  .service img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  .service h2 {
    margin-bottom: 15px;
    font-size: 2rem;
    color: #1ab555;
  }
  .service p {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
  }
  
  /* ===== Footer Section ===== */
  .footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
  }
  .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-logo h2 {
    font-family: 'Lora', serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 5px;
  }
  .footer-logo p {
    font-size: 1rem;
    color: #f1f5f2;
  }
  .footer-contact p {
    font-size: 1.1rem;
    color: #f1f5f2;
    margin: 5px 0;
  }
  .footer-contact a {
    color: #377968; 
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }
  .social-icons a {
    color: #377968;
    font-size: 35px;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .social-icons a:hover {
    color: #1ab555;
  }
  
  /* ===== Animations ===== */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  /* Optionally, add a delay for staggered animations */
  .delay-1 { animation-delay: 0.3s; }
  .delay-2 { animation-delay: 0.6s; }
  .delay-3 { animation-delay: 0.9s; }
  
  /* Responsive adjustments */
  @media (min-width: 768px) {
    .services-section {
      flex-direction: row;
      justify-content: space-around;
    }
    .service {
      width: 30%;
    }
    .footer-content {
      flex-direction: row;
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-logo {
      text-align: left;
    }
    .footer-contact {
      text-align: right;
    }
  }