:root {
    --primary: #000000;
    --primary-light: #1a1a1a;
    --accent: #b49164;
    --accent-dark: #8e6f4a;
    --text-dark: #111111;
    --text-muted: #666666;
    --bg-light: #ffffff;
    --white: #ffffff;
    --accent-glow: rgba(180, 145, 100, 0.2);
}
/* Header/Footer managed globally by home.css */

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Disclaimer Hero */
.disclaimer-hero {
    height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(78, 77, 77, 0.7)), url('/assets/images/hero_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    border-bottom: 1px solid var(--accent-glow);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1px;
    color: white;
}

.breadcrumbs {
    display: flex;
    gap: 10px;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 15px;
}

.breadcrumbs span.current {
    color: var(--accent);
}

/* Header consistency maintained by home.css */

/* Disclaimer Content */
.disclaimer-content {
    padding: 100px 0;
    background: #ffffff;
}

.disclaimer-card {
    background: #ffffff;
    border: 1px solid #eeeeee;
    padding: 60px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.disclaimer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent);
}

.disclaimer-section {
    margin-bottom: 60px;
}

.disclaimer-section h2 {
    color: var(--accent);
    font-size: 28px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.disclaimer-section p {
    color: var(--text-muted);
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.highlight-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px dashed var(--accent);
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
}

.highlight-box p {
    color: #000000;
    margin-bottom: 0;
    font-weight: 500;
}

/* Footer consistency maintained by home.css */

@media (max-width: 768px) {
    .container {
        padding: 0 10px !important;
    }

    .disclaimer-hero {
        height: 250px;
    }

    .disclaimer-card {
        padding: 30px 15px;
        border-radius: 20px;
    }
    
    .hero-content h1 {
        font-size: 32px;
        color: white !important;
    }

    .disclaimer-section h2 {
        font-size: 22px;
    }

    .disclaimer-section p {
        font-size: 15px;
    }
}
