body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  .hero {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(30, 30, 30, 0.85), #0a0a0a),
                url('images/urban-city-83.jpg') center/cover no-repeat;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
  }
  
  .hero-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.25rem;
    color: #d6d6d6;
  }
  
  .wide-container {
    max-width: 100%;
    padding: 0 6vw;
  }
  
  .section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #222;
    text-align: left;
  }
  
  .section-description {
    font-size: 1.25rem;
    line-height: 2;
    text-align: left;
    margin-top: 1rem;
  }
  
  .featured-spot {
    background-color: #eaeaea;
  }
  
  .feature-heading {
    font-size: 2rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: #0a2cc3;
  }
  
  .feature-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
  }
  
  .image-wrapper {
    width: 100%;
    max-width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
  }
  
  .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-up.active {
    opacity: 1;
    transform: translateY(0);
  }
  
  .custom-footer {
    background-color: rgb(20, 20, 20);
    border-top: 2px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0 10px 0; 
    margin-top: 0 !important;
    text-align: center;
  }
  
  .footer-logo {
    margin-bottom: 5px; 
  }
  .custom-footer {
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
  }
  
  
  .footer-logo img {
    height: 40px;
    width: auto;
    transform: scale(4); 
    transform-origin: center;
  }
  
  
  .footer-description {
    font-size: 14px;
    line-height: 1.4;
    margin: 10px auto;  
    max-width: 500px;
    color: #fff;
  }
  
  .footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;  
    flex-wrap: wrap;
  }
  
  .footer-links a {
    font-weight: 500;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
  }
  
  .footer-links a:hover {
    color: #36b1ea;
  }
  
  .footer-brand {
    color: #fff;
    font-size: 16px;
    margin-top: 5px;
  }