:root {
            --gold: #D4AF37;
            --gold-alt: #caa449;
            --black: #1B1B1B;
            --black-alt: #1a1a1a;
            --bronze: #6B4F2A;
            --dark-bg: #121212;
        }

        /* Reset and base */
        html, body {
            height: 100%;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
        }

        body {
            background-color: var(--dark-bg);
            font-family: 'Segoe UI', sans-serif;
            color: white;
            padding-top: 80px; /* Matches navbar height */
        }

        main {
            max-width: 100%;
            margin: 0 auto;
            flex: 1; /* Ensure main takes available space */
        }

        /* Content wrapper for chessboard pattern */
        .content-wrapper {
            position: relative;
            min-height: calc(100vh - 80px); /* Full height minus navbar */
            z-index: 1;
            flex: 1 0 auto; /* Ensure it grows to fill space */
        }

        /* Chessboard pattern as a pseudo-element */
        .content-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                linear-gradient(45deg, var(--black-alt) 25%, transparent 25%, transparent 75%, var(--black-alt) 75%),
                linear-gradient(45deg, var(--black-alt) 25%, transparent 25%, transparent 75%, var(--black-alt) 75%);
            background-size: 60px 60px;
            background-position: 0 0, 30px 30px;
            z-index: -1; /* Behind content */
        }

        /* Contact Section */
        .contact-section {
            padding: 6rem 1rem 4rem 1rem;
            text-align: center;
            max-width: 1400px;
            margin: 0 auto;
            margin-top: -28px; /* Matches Home, About, and Events pages */
        }
        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            background-color: var(--black-alt);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 0 10px var(--bronze);
            color: white;
        }
        .contact-container h1 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 1rem;
            text-align: center;
        }
        .contact-container p {
            font-size: 1.125rem;
            color: #e5e7eb;
            margin-bottom: 1rem;
            line-height: 1.75rem;
            text-align: center;
        }
        .contact-email {
            color: var(--gold);
            transition: all 0.3s ease;
        }
        .contact-email:hover {
            color: var(--bronze);
        }

        .contact-container .form-wrapper {
            display: block;
            width: 100%;
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }
        .contact-container form {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            width: 100%;
            max-width: 700px;
        }
        .contact-container input,
        .contact-container textarea {
            width: 100%;
            padding: 0.75rem;
            border-radius: 6px;
            border: 1px solid var(--gold);
            background-color: var(--black);
            color: white;
            font-size: 1rem;
            min-height: 40px;
        }
        .contact-container textarea {
            resize: vertical;
            min-height: 120px;
        }
        .contact-container input:focus,
        .contact-container textarea:focus {
            outline: none;
            border-color: var(--gold-alt);
            box-shadow: 0 0 5px var(--gold);
        }
        .contact-container button {
            background-color: var(--gold);
            color: var(--black);
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            border: none;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease, transform 0.3s ease;
            margin-top: 6px;
        }
        .contact-container button:hover {
            background-color: silver;
            transform: translateY(-2px);
        }
        #form-status {
            margin-top: 1rem;
            font-size: 1rem;
            color: white;
        }

        /* FAQ Section */
        .faq-section {
            padding: 2rem 1rem 4rem 1rem;
            text-align: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .faq-container {
            max-width: 1400px;
            margin: 0 auto;
            background-color: var(--black-alt);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 0 10px var(--bronze);
            color: white;
        }
        .faq-container h2 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .faq-item {
            border-bottom: 1px solid #444;
            margin-bottom: 2rem;
        }
        .faq-question {
            color: white;
            width: 100%;
            padding: 1rem;
            font-size: 1.1rem;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            position: relative;
            font-weight: bold;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .faq-question:hover {
            background-color: rgba(212, 175, 55, 0.15);
            color: white;
        }
        .faq-question .arrow {
            transition: transform 0.3s ease, color 0.3s ease;
            font-size: 1.2rem;
            user-select: none;
            color: white;
        }
        .faq-question:hover .arrow {
            color: var(--gold);
        }
        .faq-item.active .arrow {
            transform: rotate(180deg);
            color: var(--gold);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: all 0.4s ease;
            padding: 0 1rem;
            color: white;
            text-align: left;
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
            opacity: 1;
            padding: 1rem;
        }

        /* Location Section */
        .location-section {
            padding: 2rem 1rem 4rem 1rem;
            text-align: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .location-container {
            max-width: 1400px;
            margin: 0 auto;
            background-color: var(--black-alt);
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 0 10px var(--bronze);
            color: white;
        }
        .location-container h2 {
            font-size: 2rem;
            font-weight: 600;
            color: var(--gold);
            margin-bottom: 1.5rem;
            text-align: center;
        }
        .map {
            width: 100%;
            height: 400px;
            border: 2px solid var(--gold);
            border-radius: 12px;
        }
        @media (max-width: 600px) {
            .map {
                height: 250px;
            }
        }

        /* Responsive paddings */
        @media (min-width: 768px) {
            .contact-section {
                padding: 6rem 2rem 4rem 2rem;
            }
            .faq-section,
            .location-section {
                padding: 2rem 2rem 4rem 2rem;
            }
        }