/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #f8f7f4;
}
a {
    color: #0a5c8a;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age banner */
.age-banner {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.age-banner button {
    background: #c9a227;
    border: none;
    padding: 6px 14px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #e0ddd5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}
.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}
.logo span {
    display: block;
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
}
nav a {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
}
nav a.active, nav a:hover {
    color: #0a5c8a;
}

/* Hero */
.hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.75));
    color: #fff;
    padding: 40px 20px 30px;
    text-align: center;
}
.hero-text h1 {
    font-size: 2.6rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero-text .subtitle {
    font-size: 1.15rem;
    opacity: 0.95;
}

/* Content */
.content {
    padding: 40px 20px 60px;
}
.content h2 {
    font-size: 1.9rem;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-bottom: 3px solid #c9a227;
    padding-bottom: 10px;
    display: inline-block;
}
.content h3 {
    font-size: 1.35rem;
    margin: 30px 0 15px;
    color: #222;
}
.content p {
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.features {
    list-style: none;
    margin: 20px 0;
}
.features li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid #eee;
}
.features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0a5c8a;
    font-weight: bold;
}

/* Image grid */
.img-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}
.img-grid figure {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.img-grid img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.img-grid figcaption {
    padding: 12px;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
}

/* Disclaimer */
.disclaimer-box {
    background: #fff8e6;
    border-left: 5px solid #c9a227;
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}
.disclaimer-box h4 {
    margin-bottom: 10px;
    color: #7a5c00;
}
.disclaimer-box p {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

/* Table */
.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.info-table th, .info-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.info-table th {
    background: #f0eeea;
    width: 30%;
    font-weight: 600;
}

/* Note */
.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 25px;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: #ddd;
    padding: 40px 0 20px;
    font-size: 0.9rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 30px;
    margin-bottom: 30px;
}
footer h4 {
    color: #c9a227;
    margin-bottom: 12px;
    font-size: 1rem;
}
footer ul {
    list-style: none;
}
footer ul li {
    margin-bottom: 6px;
}
footer a {
    color: #aaa;
}
footer a:hover {
    color: #fff;
}
.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
}
.footer-bottom .small {
    font-size: 0.8rem;
    color: #888;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 12px;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }
    .hero {
        height: 280px;
    }
    .hero-text h1 {
        font-size: 1.8rem;
    }
    .img-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional pages shared */
.page-header {
    background: #0a5c8a;
    color: #fff;
    padding: 40px 20px;
    text-align: center;
}
.page-header h1 {
    font-size: 2rem;
}
.card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.card h3 {
    margin-top: 0;
}
.warning {
    background: #fef2f2;
    border-left: 5px solid #c53030;
    padding: 18px;
    margin: 20px 0;
    border-radius: 0 6px 6px 0;
}
.helpline {
    background: #edf7ed;
    border: 1px solid #a3d9a3;
    padding: 15px;
    margin: 15px 0;
    border-radius: 6px;
}
.helpline strong {
    color: #1a7a1a;
}
