    body {
      font-family: 'Open Sans', Arial, sans-serif;
    }

    /* Navbar */
    .navbar {
      border-bottom: 1px solid #ddd;
    }

    .navbar-nav .nav-link {
      font-weight: 600;
      color: #000;
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: red;
    }

    .connect-btn {
      background: red;
      color: #fff !important;
      padding: 10px 20px;
      border-radius: 4px;
      font-weight: 600;
      text-decoration: none;
    }

    .connect-btn:hover {
      background: #c40000;
    }

    .phone-icon {
      font-size: 22px;
      color: #000;
      margin-left: 10px;
    }

    .phone-icon:hover {
      color: red;
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 450px;
      background: url('./images/skyline.jpg') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 60%;
    }

    .hero h1 {
      font-size: clamp(26px, 5vw, 55px);
      font-weight: 700;
      margin-bottom: 15px;
    }

    .hero p {
      font-size: clamp(16px, 3vw, 35px);
    }

    /* Cards */
    .card-header {
      background: red;
      color: #fff;
      font-weight: bold;
      text-align: center;
      font-size: 1.2rem;
      padding: 12px;
    }

    .card-body a {
      font-weight: bold;
      text-decoration: none;
      color: #000;
    }

    .card-body a:hover {
      text-decoration: underline;
    }
    
    .bg-gray1 {
    background-color: #1f1f1f !important;
    }