
/* Container */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Header */
.legal-header {
    padding: 60px 50px 40px;
    border-bottom: 1px solid var(--border-color);
}

.brand-name {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.main-title {
    color: var(--text-heading);
    font-size: 2.2rem;
    font-weight: 800;
}

.date-stamp {
    font-size: 0.85rem;
    color: #888;
    margin-top: 5px;
}

/* Content Blocks */
.legal-content {
    padding: 20px 50px;
}

.content-block {
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
}

.content-block:last-child {
    border-bottom: none;
}

.section-title {
    font-size: 1.1rem;
    color: var(--text-heading);
    margin-bottom: 12px;
    font-weight: 700;
}

/* List Style */
.clean-list {
    list-style: none;
    margin-bottom: 15px;
}

.clean-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.clean-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background-color: var(--tertiary);
    border-radius: 50%;
}

/* Subtle Accent Block (Lightly usage of Primary) */
.highlight-accent {
    background-color: #f8f9ff;
    margin-left: -50px;
    margin-right: -50px;
    padding: 40px 50px;
    border-left: 4px solid var(--primary);
}

/* Contact Grid */
.contact-grid {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

/* Footer */
.simple-footer {
    padding: 30px 50px;
    background: #fcfcfc;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 0.8rem;
    color: #999;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .legal-header, .legal-content, .simple-footer, .highlight-accent {
        padding: 30px 25px;
    }
    .highlight-accent {
        margin-left: -25px;
        margin-right: -25px;
    }
    .contact-grid {
        flex-direction: column;
        gap: 10px;
    }
}