/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #0a192f; /* Dark Blue background */
    color: #ccd6f6; /* Light Blue text */
    line-height: 1.8;
    overflow-x: hidden;
  }
  
  /* Container Styling */
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px;
    background: #112240;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }
  
  /* Header Section Styling */
  .header-section {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .header-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #64ffda;
  }
  
  .header-section p {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  /* Contact Info Styling */
  .contact-info {
    display: flex;
    justify-content: space-around;
    margin-bottom: 40px;
  }
  
  .info-item {
    text-align: center;
  }
  
  .info-item h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #64ffda;
  }
  
  .info-item p {
    font-size: 1.2rem;
  }
  
  /* Contact Form Styling */
  .contact-form {
    margin-bottom: 40px;
  }
  
  .contact-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #64ffda;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
  
  .form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1.2rem;
    border: 1px solid #64ffda;
    border-radius: 5px;
    background: #0a192f;
    color: #ccd6f6;
  }
  
  .form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #4db6ac;
  }
  
  .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1.2rem;
    color: #fff;
    background: #64ffda;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    cursor: pointer;
  }
  
  .btn:hover {
    background: #4db6ac; /* Slightly darker shade on hover */
  }
  
  /* Map Styling */
  .map {
    margin-bottom: 40px;
  }
  
  .map h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #64ffda;
  }
  
  iframe {
    border-radius: 10px;
  }
  
  /* Footer Styling */
  .footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: #112240;
    border-radius: 10px;
  }
  
  .footer p {
    font-size: 1.2rem;
    color: #64ffda;
  }
  
  /* Media Queries for Responsiveness */
  @media (max-width: 768px) {
    .header-section h1 {
      font-size: 2rem;
    }
  
    .header-section p {
      font-size: 1.2rem;
    }
  
    .contact-info {
      flex-direction: column;
      align-items: center;
    }
  
    .info-item {
      margin-bottom: 20px;
    }
  
    .contact-form h2, .map h2 {
      font-size: 1.6rem;
    }
  
    .form-group input, .form-group textarea {
      font-size: 1rem;
    }
  
    .btn {
      font-size: 1rem;
      padding: 8px 16px;
    }
  
    .footer p {
      font-size: 1rem;
    }
  }
  
