/* General Styles */
body {
    font-family: 'Georgia', serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    font-family: 'Helvetica', sans-serif;
  }
  
  a {
    text-decoration: none;
    color: #007BFF;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Main Content */
  .main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
  }
  
  /* Hero Section */
  .hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('ringroad2.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 5rem 2rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    background-color: #f59e0b; /* Yellow */
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
  }
  
  .cta-button:hover {
    background-color: #d97706; /* Darker Yellow */
  }
  
  /* Info Section */
  .info-section {
    padding: 2rem 0;
  }
  
  .info-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e3a8a; /* Blue */
    text-align: center;
  }
  
  .info-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }
  
  .info-content img {
    width: 50%;
    height: 50vh;
    border-radius: 8px;
  }
  
  .info-text {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
  }
  
  .info-text p {
    font-weight: bold;
    margin-bottom: 1rem;
  }
  
  .info-text ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
  }
  
  .info-text ul li {
    margin-bottom: 0.5rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1.25rem;
    }
  
    .info-content {
      flex-direction: column;
    }
  }