@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --primary: #2B3A67;
    --secondary: #496A81;
    --accent: #66999B;
    --background: #F2F2F2;
    --text: #333333;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--background);
}

.cN9r {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tB5x {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.tB5x .cN9r {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nV2k {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nV2k .cN9r {
    display: flex;
    justify-content: center;
    align-items: center;
}

.lG7m img {
    height: 50px;
    width: auto;
}

.hR4p {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
}

.hC8w {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.sT3m {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--accent);
}

.mH5n {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.dS6p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.fX2j {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.bX9n {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.iC4k {
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.bX9n h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.bX9n p {
    font-size: 16px;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .mH5n {
        font-size: 36px;
    }

    .fX2j {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .tB5x .cN9r {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .mH5n {
        font-size: 28px;
    }

    .sT3m {
        font-size: 16px;
    }

    .dS6p {
        font-size: 16px;
    }
}

.lS8p {
    padding: 60px 0;
    background: var(--white);
}

.oF3w {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    overflow: hidden;
}

.cR5t {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 200px;
    gap: 20px;
    padding: 20px;
    align-items: center;
}

.iM2k img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.bN7p h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 20px;
}

.bN7p p {
    color: var(--accent);
    font-size: 18px;
    font-weight: 500;
}

.pL4j ul {
    list-style: none;
}

.pL4j li {
    margin-bottom: 8px;
    color: var(--text);
}

.sV9h {
    text-align: center;
}

.rT6m {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.bT2k {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: background 0.3s;
}

.bT2k:hover {
    background: var(--secondary);
}

.dC7m {
    padding: 10px;
    background: var(--background);
    color: var(--text);
    text-align: center;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .cR5t {
        grid-template-columns: 150px 1fr 1fr 150px;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .cR5t {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .iM2k img {
        max-width: 200px;
        margin: 0 auto;
    }

    .pL4j ul {
        display: inline-block;
        text-align: left;
    }

    .sV9h {
        margin-top: 20px;
    }
}

.tX7p {
    padding: 80px 0;
    background: var(--background);
}

.sC4w {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.sC4w:last-child {
    margin-bottom: 0;
}

.sC4w h2 {
    color: var(--primary);
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.sC4w h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.sC4w p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .sC4w {
        padding: 30px;
    }

    .sC4w h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .sC4w {
        padding: 20px;
    }

    .sC4w h2 {
        font-size: 22px;
    }
}

.fT8p {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.dS2w {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

.dS2w p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

.pM5w {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.pM5w img {
    height: 30px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.pM5w a:hover img {
    opacity: 1;
}

.lK3w {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.lK3w a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.lK3w a:hover {
    opacity: 1;
}

.cP7w {
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .pM5w {
        gap: 20px;
    }

    .pM5w img {
        height: 25px;
    }

    .lK3w {
        gap: 20px;
        padding: 0 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .dS2w p {
        font-size: 13px;
    }

    .pM5w img {
        height: 20px;
    }

    .lK3w {
        flex-direction: column;
        gap: 15px;
    }
}

.pG4w {
    padding: 60px 0;
    background: var(--background);
}

.pG4w h1 {
    color: var(--primary);
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

.sE2m {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.sE2m:last-child {
    margin-bottom: 0;
}

.sE2m h2 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.sE2m p {
    color: var(--text);
    font-size: 16px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .pG4w h1 {
        font-size: 30px;
    }

    .sE2m {
        padding: 20px;
    }

    .sE2m h2 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .pG4w h1 {
        font-size: 26px;
    }

    .sE2m h2 {
        font-size: 18px;
    }
}

/* Age Verification Popup */
.aV5p, .rC8p {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.pP3m {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
}

.pP3m h2 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 20px;
}

.pP3m p {
    margin-bottom: 15px;
    color: var(--text);
    line-height: 1.6;
}

.bT4n {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.aC7m, .rJ2k {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.aC7m {
    background: var(--accent);
    color: var(--white);
}

.aC7m:hover {
    background: var(--secondary);
}

.rJ2k {
    background: #f2f2f2;
    color: var(--text);
}

.rJ2k:hover {
    background: #e5e5e5;
}

/* Cookie Consent */
.cC6p {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 15px 0;
    display: none;
    z-index: 999;
}

.cM4w {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.cM4w p {
    color: var(--white);
    margin: 0;
}

.cM4w a {
    color: var(--white);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .pP3m {
        padding: 30px;
    }

    .cM4w {
        flex-direction: column;
        text-align: center;
    }

    .bT4n {
        flex-direction: column;
    }
}
