/* ================================
   LAMHAH LEGAL PAGES STYLE
   ================================ */

/* Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Base */
body {
    font-family: "Beiruti", -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0d0d14;
    color: #e4e4e7;
    line-height: 1.8;
}

/* Layout */
.legal-root {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
.legal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.legal-brand {
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    text-decoration: none;
}

.legal-nav a {
    color: #a1a1aa;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
    transition: 0.2s;
}

.legal-nav a:hover {
    color: #ffffff;
}

/* Content Wrapper */
.legal-container {
    max-width: 820px;
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px;
}

/* Title */
.legal-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.legal-subtitle {
    font-size: 16px;
    color: #71717a;
    margin-bottom: 40px;
}

/* Section */
.legal-section {
    margin-bottom: 32px;
}

.legal-section h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
}

.legal-section p {
    font-size: 16px;
    color: #a1a1aa;
}

/* Divider */
.legal-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 40px 0;
}

/* Footer */
.legal-footer {
    margin-top: auto;
    padding: 30px;
    text-align: center;
    font-size: 13px;
    color: #71717a;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.legal-footer a {
    color: #e4e4e7;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .legal-header {
        padding: 16px;
    }

    .legal-container {
        padding: 40px 16px;
    }

    .legal-title {
        font-size: 24px;
    }
}
