/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
  }
  
  .container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  /* Navigation Bar */
  .navbar {
    background-color: #800020;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .navbar .logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    padding-left: 20px;
  }
  .navbar .logo a {
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    font-size: 24px;
  }
  
  .navbar .logo a:hover {
    text-decoration: none;
    color: #ffffff;
  }
  
  
  .navbar .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    padding-right: 20px;
  }
  
  .navbar .nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
  }
  
  .navbar .nav-links li a:hover {
    text-decoration: underline;
  }
  
  /* Hero Section */
  .hero {
    background-color: #f2f2f2;
    padding: 80px 20px;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    color: #800020;
    margin-bottom: 15px;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  /* Section Styling */
  .section {
    padding: 60px 20px;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    color: #800020;
    margin-bottom: 40px;
  }
  
  /* Section Title White (for Explore) */
  .section-title-white {
    text-align: center;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 40px;
  }
  
  /* Grid Styling */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .grid-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
  }
  
  .grid-item:hover {
    transform: translateY(-5px);
  }
  
  .grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .grid-item h3 {
    padding: 15px;
    font-size: 1.5rem;
    color: #333;
  }
  
  .grid-item p {
    padding: 0 15px 15px 15px;
    font-size: 1rem;
    color: #555;
  }
  
  .grid-item a {
    text-decoration: none;
    color: inherit;
  }
  
  /* Explore Section */
  .explore {
    background-color: #2f3e56;
    padding: 60px 20px;
    text-align: center;
  }
  
  .explore-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .explore-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .explore-card {
    background: transparent;
    text-align: center;
    width: 220px;
    transition: transform 0.3s ease;
  }
  
  .explore-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .explore-card p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 500;
  }
  
  .explore-card a {
    text-decoration: none;
    color: inherit;
  }
  
  .explore-card:hover {
    transform: translateY(-5px);
  }
  
  /* Contact Form */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
  }
  
  .contact-form input, .contact-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
  }
  
  .contact-form button {
    background-color: #800020;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #a52a2a;
  }
  
  /* Footer */
  footer {
    background-color: #800020;
    padding: 20px 0;
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    margin-top: 40px;
  }
  
  /* Responsive Design */
  @media screen and (max-width: 768px) {
    .navbar .nav-links {
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin-top: 10px;
    }
  
    .hero h2 {
      font-size: 2rem;
    }
  
    .section-title,
    .section-title-white {
      font-size: 1.8rem;
    }
  
    .grid {
      grid-template-columns: 1fr;
    }
  
    .explore-grid {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media screen and (max-width: 480px) {
    .hero {
      padding: 60px 20px;
    }
  
    .grid-item img {
      height: 180px;
    }
  
    .hero h2, .section-title, .section-title-white {
      font-size: 1.6rem;
    }
  
    .explore-card img {
      height: 180px;
    }
  }
  