/*
    legal-style.css
    Stylesheet for legal documents of Dyutayukti Technologies
*/

/* --- 1. Root Variables & Global Styles --- */
:root {
    --charcoal-bg: #111318;
    --dark-slate: #1D2026;
    --accent-gold: #D4AF37;
    --text-primary: #F5F5F7;
    --text-secondary: #A1A1A6;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Roboto', sans-serif;
    --transition-speed: 300ms;
}

body {
    background-color: var(--charcoal-bg);
    color: var(--text-primary);
    font-family: var(--font-sans);
    margin: 0;
    padding: 0;
    line-height: 1.8;
}


/* --- 2. Header --- */
.legal-header {
    padding: 25px 60px;
    background-color: #000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-logo {
    height: 35px;
}


/* --- 3. Main Content Container --- */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

h1 {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0.5rem;
    color: #fff;
    border-bottom: 2px solid var(--accent-gold);
    padding-bottom: 1rem;
}

h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
}

.effective-date {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    font-size: 0.9rem;
}

ul {
    padding-left: 25px;
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

li {
    margin-bottom: 0.75rem;
    font-weight: 300;
}

a {
    color: var(--accent-gold);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-speed) ease;
}

a:hover {
    text-decoration: underline;
}


/* --- 4. Footer --- */
.legal-footer {
    text-align: center;
    padding: 50px 20px;
    margin-top: 60px;
    border-top: 1px solid var(--dark-slate);
}

.legal-footer p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* --- 5. Responsive Design --- */
@media (max-width: 768px) {
    .legal-header {
        padding: 20px;
        text-align: center;
    }
    
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.4rem;
    }
}