/* ===== Legal Pages Stylesheet ===== */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #2c7a2c;
    min-height: 100vh;
    color: #333;
}

/* ===== Site Header ===== */

.site-header {
    background-color: rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0 1rem;
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    gap: 1rem;
}

.site-logo {
    color: white;
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.site-logo:hover {
    opacity: 0.85;
}

.site-nav {
    display: flex;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 4px;
    font-size: 0.95rem;
    transition: background-color 0.15s, color 0.15s;
}

.site-nav a:hover,
.site-nav a.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
}

/* ===== Main Layout ===== */

.legal-layout {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 1rem 3rem;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* ===== Sidebar ===== */

.legal-sidebar {
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: 10px;
    padding: 1.25rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    position: sticky;
    top: 1rem;
}

.legal-sidebar h2 {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin: 0 0 0.75rem 0;
}

.legal-sidebar nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.legal-sidebar nav a {
    display: block;
    color: #444;
    text-decoration: none;
    padding: 0.45rem 0.6rem;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.15s, color 0.15s;
    line-height: 1.3;
}

.legal-sidebar nav a:hover {
    background-color: #f0f7f0;
    color: #1a5c1a;
}

.legal-sidebar nav a.active {
    background-color: #e8f5e9;
    color: #1a5c1a;
    font-weight: 600;
}

/* ===== Legal Content Card ===== */

.legal-content {
    background-color: rgba(255, 255, 255, 0.97);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    line-height: 1.75;
    min-width: 0; /* prevent grid blowout */
}

.legal-content h1 {
    font-size: 1.9rem;
    color: #1a5c1a;
    margin: 0 0 0.35rem 0;
    line-height: 1.2;
}

.last-updated {
    font-size: 0.82rem;
    color: #888;
    margin: 0 0 2rem 0;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid #e8f5e9;
}

.legal-content h2 {
    font-size: 1.3rem;
    color: #1a5c1a;
    margin: 2rem 0 0.75rem;
}

.legal-content h3 {
    font-size: 1.05rem;
    color: #2c7a2c;
    margin: 1.5rem 0 0.5rem;
}

.legal-content p {
    margin: 0 0 1rem;
}

.legal-content ul,
.legal-content ol {
    margin: 0.5rem 0 1rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #1a5c1a;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: #2c7a2c;
}

.legal-content strong {
    color: #222;
    font-weight: 600;
}

/* Tables */

.legal-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
}

.legal-content th {
    background-color: #e8f5e9;
    color: #1a5c1a;
    font-weight: 600;
    text-align: left;
    padding: 0.6rem 0.75rem;
    border-bottom: 2px solid #c8e6c9;
}

.legal-content td {
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.legal-content tr:last-child td {
    border-bottom: none;
}

.legal-content tr:nth-child(even) td {
    background-color: #fafafa;
}

/* Manage Preferences button */

.preferences-action {
    margin: 1.5rem 0;
}

.preferences-btn {
    background-color: #2c7a2c;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.preferences-btn:hover {
    background-color: #1a5c1a;
}

/* ===== Site Footer ===== */

.site-footer {
    background-color: rgba(0, 0, 0, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 1rem;
    margin-top: auto;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.footer-inner p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.85rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.25rem 0.5rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.82rem;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    transition: color 0.15s;
}

.footer-nav a:hover {
    color: white;
}

.footer-nav a:not(:last-child)::after {
    content: '·';
    margin-left: 0.5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== Contact Form ===== */

.contact-form-wrapper {
    margin: 0 0 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #333;
}

.required {
    color: #c0392b;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1.5px solid #d0d0d0;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    color: #222;
    background: #fff;
    transition: border-color 0.15s, box-shadow 0.15s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c7a2c;
    box-shadow: 0 0 0 3px rgba(44, 122, 44, 0.15);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.cf-turnstile {
    margin-top: 0.25rem;
}

.form-status {
    font-size: 0.9rem;
    padding: 0;
    min-height: 0;
    transition: all 0.2s;
}

.form-status--success {
    color: #1a5c1a;
    background: #e8f5e9;
    border: 1px solid #c8e6c9;
    border-radius: 6px;
    padding: 0.75rem 1rem;
}

.form-status--error {
    color: #922b21;
    background: #fdf3f2;
    border: 1px solid #f5c6c2;
    border-radius: 6px;
    padding: 0.75rem 1rem;
}

.submit-btn {
    align-self: flex-start;
    background-color: #2c7a2c;
    color: white;
    border: none;
    padding: 0.7rem 1.75rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, opacity 0.2s;
}

.submit-btn:hover {
    background-color: #1a5c1a;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
    .legal-layout {
        grid-template-columns: 1fr;
        margin: 1rem auto;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }

    .legal-sidebar nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
    }

    .legal-sidebar nav a {
        font-size: 0.82rem;
        padding: 0.3rem 0.5rem;
    }

    .legal-content {
        padding: 1.5rem;
    }

    .legal-content h1 {
        font-size: 1.5rem;
    }

    .legal-content table {
        font-size: 0.82rem;
    }

    .header-inner {
        height: 48px;
    }

    .site-logo {
        font-size: 1rem;
    }

    .site-nav a {
        font-size: 0.85rem;
        padding: 0.35rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.25rem;
    }

    .site-nav {
        gap: 0.1rem;
    }
}


/*# sourceMappingURL=legal.ec919d751c5b8480c6fa.css.map*/