* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .navbar {
    background-color: #343a40;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .navbar .navbar-brand {
    font-weight: 600;
    font-size: 1.8rem;
    color: #fff;
  }
  
  .navbar-nav .nav-item .nav-link {
    font-weight: 500;
    font-size: 1.1rem;
    color: #fff;
    transition: color 0.3s;
  }
  
  .navbar-nav .nav-item .nav-link:hover {
    color: #f8d7da; 
  }
  
  .hero {
    background-color: #1f9bb7;
    background-size: cover;
    background-position: center;
    padding: 100px 0; 
    text-align: center; 
    position: relative;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
  }
  
  .hero-content { 
    position: relative; 
    z-index: 1; 
  }
  
  .hero h1 {
    font-size: 4rem; 
    font-weight: bold;
    color: #fff; 
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.8rem; 
    font-weight: 300;
    color: #f8f8f8; 
    margin-bottom: 30px;
  }
  
  .hero .btn {
    padding: 15px 30px; 
    font-size: 1.2rem;
    border-radius: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease; 
  }
  
  .hero .btn:hover {
    transform: translateY(-3px); 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); 
  }
  
  .about {
    background-color: #fff;
    padding: 60px 20px;
  }
  
  .section-title {
    font-size: 2.5rem;
    color: #333;
    font-weight: 700;
    margin-bottom: 30px;
  }
  
  .about p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6; 
  }
  
  .location .map-container iframe {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
  }
  
  .footer {
    background-color: #343a40;
    color: #fff;
    padding: 30px 0;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1); 
  }
  
  .footer a {
    color: #fff;
    text-decoration: none;
  }
  
  .footer a:hover {
    text-decoration: underline;
  }
  
  @media (max-width: 768px) {
  
    .hero h1 {
      font-size: 2.5rem;
    }
  
    .hero p {
      font-size: 1.3rem;
    }
  
    .location .map-container iframe {
      height: 300px;
    }
  
    .about p {
      font-size: 1rem;
    }
  }