 body {
      font-family: 'Segoe UI', sans-serif;
      background: #f4f4f9;
      margin: 0;
      padding: 0;
    }
    .navbar {
      background-color: #e8e6e6;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }
    .navbar-brand {
      font-weight: bold;
      color: #0074d9 !important;
    }
    .nav-link {
      color: #333 !important;
      font-weight: 500;
    }
    .hero {
      background: linear-gradient(145deg, #0074d9, #001f3f);
      color: white;
      padding: 100px 20px;
      text-align: center;
    }
    .section {
      padding: 100px 20px;
    }
    .section:nth-child(even) {
      background: #ffffff;
    }
    .section:nth-child(odd) {
      background: #f0f4f8;
    }
    .section h2 {
      margin-bottom: 30px;
    }
    .text-block {
      max-width: 600px;
    }
    .image-block img {
      max-width: 100%;
      border-radius: 10px;
    }
    .icon-title i {
      color: #0074d9;
      margin-right: 10px;
    }
    .team-member img {
      width: 100%;
      border-radius: 15px;
    }
    footer {
      background-color: #111;
      color: #ccc;
      padding: 60px 0;
    }
    .logo-text {
      font-size: 1.8rem;
      font-weight: bold;
      color: #00d8ff;
    }
    ul li {
      margin-bottom: 10px;
    }
    iframe {
      border-radius: 10px;
    }
    @media (max-width: 768px) {
      .hero, .section {
        padding: 60px 20px;
      }
      .d-flex.flex-row {
        flex-direction: column !important;
      }
    }