/* Venue Page Styles */
        :root {
          --font: "Inter", sans-serif;
          --logo-font: "Bebas Neue", cursive;
          --bg-color: #f8fafc;
          --primary: #204d2f;
          --secondary: #e6b635;
          --light-accent: #f1f5f9;
          --Neutral-Accent: #64748b;
          --Accent-color: #2563eb;
          --radius: 12px;
          --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        body {
          font-family: var(--font);
          background-color: var(--bg-color);
          color: var(--primary);
          line-height: 1.6;
          margin: 0;
          padding: 0;
        }

        .container {
          margin: 6rem auto 0;
          padding: 40px 5%;
          /* max-width: 1200px; */
        }

        .header {
          text-align: center;
          margin-bottom: 50px;
          padding: 40px 0;
          background: linear-gradient(
            135deg,
            var(--primary) 0%,
            rgba(32, 77, 47, 0.8) 100%
          );
          border-radius: var(--radius);
          color: white;
          box-shadow: var(--shadow);
        }

        .header h1 {
          font-family: var(--logo-font);
          font-size: 3rem;
          font-weight: 400;
          letter-spacing: 2px;
          margin-bottom: 10px;
          text-transform: uppercase;
        }

        .section {
          background: white;
          padding: 40px;
          margin-bottom: 30px;
          border-radius: var(--radius);
          box-shadow: var(--shadow);
          transition: var(--transition);
        }

        .section:hover {
          transform: translateY(-2px);
          box-shadow: 0 8px 25px rgba(37, 99, 235, 0.2);
        }

        .section h2 {
          color: var(--primary);
          font-size: 1.8rem;
          margin-bottom: 25px;
          font-weight: 600;
          border-left: 4px solid var(--secondary);
          padding-left: 15px;
        }

        .venue-info {
          background: linear-gradient(
            135deg,
            rgba(230, 182, 53, 0.05),
            rgba(32, 77, 47, 0.05)
          );
          border: 2px solid var(--secondary);
          padding: 30px;
          border-radius: var(--radius);
          margin: 30px 0;
          text-align: center;
        }

        .venue-info h3 {
          color: var(--primary);
          font-size: 1.4rem;
          margin-bottom: 15px;
          font-weight: 600;
        }

        .venue-info p {
          font-size: 1.1rem;
          color: var(--Neutral-Accent);
        }

        .map-container {
          margin: 30px 0;
          border-radius: var(--radius);
          overflow: hidden;
          box-shadow: var(--shadow);
        }

        .map-container iframe {
          width: 100%;
          height: 400px;
          border: none;
        }

        .transport-grid {
          display: grid;
          grid-template-columns: 1fr;
          gap: 30px;
          margin: 30px 0;
        }

        .transport-card {
          background: linear-gradient(145deg, var(--bg-color), white);
          padding: 30px;
          border-radius: var(--radius);
          border: 2px solid var(--light-accent);
          transition: var(--transition);
        }

        .transport-card:hover {
          border-color: var(--Accent-color);
          transform: translateY(-3px);
        }

        .transport-card h3 {
          color: var(--primary);
          font-size: 1.3rem;
          margin-bottom: 20px;
          font-weight: 600;
        }

        .transport-card ul {
          list-style: none;
          padding: 0;
        }

        .transport-card li {
          margin: 12px 0;
          padding-left: 25px;
          position: relative;
          color: var(--Neutral-Accent);
        }

        .transport-card li::before {
          content: "•";
          color: var(--secondary);
          font-weight: bold;
          position: absolute;
          left: 0;
          font-size: 1.2rem;
        }

        .note {
          background: var(--light-accent);
          padding: 20px;
          border-radius: var(--radius);
          margin: 25px 0;
          border-left: 4px solid var(--Neutral-Accent);
        }

        .highlight {
          color: var(--secondary);
          font-weight: 600;
        }

        .contact-email {
          text-align: center;
          margin-top: 30px;
          padding: 25px;
          background: var(--primary);
          color: white;
          border-radius: var(--radius);
        }

        .contact-email a {
          color: var(--secondary);
          text-decoration: none;
          font-weight: 600;
          font-size: 1.1rem;
          transition: var(--transition);
        }

        .contact-email a:hover {
          color: white;
        }

        @media (max-width: 768px) {
          .container {
            padding: 20px 4%;
          }

          .header h1 {
            font-size: 2rem;
          }

          .section {
            padding: 25px;
          }

          .map-container iframe {
            height: 300px;
          }
        }
