html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

:root {
    --primary-color: #9d3a6c; /* Magenta */
    --accent-color: #e67e22;  /* Orange */
    --light-bg: #ffffff;
    --off-white-bg: #f8f9fa;
    --text-color: #343a40;
    --light-text: #6c757d;
    --font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Header & Navigation --- */
.header-bar {
    background-color: #fff;
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-bar .logo img {
    height: 50px;
}
.header-bar .nav-links-simple a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.2s, color 0.2s;
}
.header-bar .nav-links-simple a:hover,
.header-bar .nav-links-simple a.primary-btn {
    background-color: var(--primary-color);
    color: #fff;
}

/* --- General Section Styling --- */
.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

main section:nth-child(even) {
    background-color: var(--off-white-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: 600;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-grid img { width: 100%; border-radius: 10px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.about-grid p, .about-grid ul { font-size: 1.1rem; }

/* --- List Styling --- */
/* Default list style with bullets */
.about-grid ul:not(.checklist) li {
    margin-bottom: 10px;
    list-style-type: disc;
    margin-left: 20px;
}
/* Specific style for lists with checkmarks */
.about-grid ul.checklist {
    list-style-type: none;
    padding-left: 0;
}
.about-grid ul.checklist li {
    margin-bottom: 10px;
}
.about-grid ul.checklist li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    margin-right: 10px;
}

/* --- Venue Hub & CTA --- */
.venue-hub { text-align: center; font-size: 1.1rem; }
.venue-hub a { color: var(--primary-color); font-weight: 600; text-decoration: none; }
.venue-hub a:hover { text-decoration: underline; }

.cta-button {
    padding: 15px 30px;
    width: 100%; 
    max-width: 280px; 
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: transform 0.2s, background-color 0.2s;
    border: 2px solid var(--accent-color);
    font-family: var(--font-family);
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    margin-top: 20px;
    background-color: var(--accent-color);
    color: #fff;
}
.cta-button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* --- Footer --- */
footer { background-color: #121212; color: #a0a0a0; text-align: center; padding: 40px 20px; }
footer a { color: #fff; text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--accent-color); }

/* --- RESPONSIVE STYLES --- */

/* For tablets and smaller desktops */
@media (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 2rem; }
    .content-section {
        padding: 60px 20px;
    }
}

/* For smaller mobile devices */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .content-section {
        padding: 40px 15px;
    }
    .about-grid p, .about-grid ul {
        font-size: 1rem;
    }
    .header-bar .logo img {
        height: 40px;
    }
}