﻿.legal-container {
    max-width: 900px;
    margin: 100px auto 0px auto;
    padding: 2rem 1rem;
    font-family: "Inter", sans-serif;
    line-height: 1.7;
    color: #333;
}

    .legal-container h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .legal-container h2 {
        margin-top: 2rem;
        font-size: 1.3rem;
    }

.legal-update {
    color: #666;
    font-size: .9rem;
    margin-bottom: 2rem;
}

section {
    margin-bottom: 1.8rem;
}

ul {
    list-style: disc;
    padding-left: 1.5rem;
}

strong {
    font-weight: 600;
}
/* CONTACT PAGE ================ */

.contact-container {
    max-width: 800px;
    margin: 100px auto 0px auto;
    padding: 2.5rem 1.5rem;
    background: #fff;
    border-radius: 14px;
}

    .contact-container h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

.contact-intro {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: .4rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: .9rem 1rem;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: 0.2s;
}

    .input-group input:focus,
    .input-group textarea:focus {
        border-color: #5f6ae5;
        box-shadow: 0 0 10px rgba(95, 106, 229, 0.15);
        outline: none;
    }

.btn-submit {
    padding: 1rem 1.5rem;
    background: #5f6ae5;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
    display: inline-flex;
    align-items: center;
    gap: .6rem;
}

    .btn-submit:hover {
        filter: brightness(1.07);
    }

    .btn-submit:disabled {
        opacity: 0.6;
        cursor: not-allowed;
    }

.contact-success,
.contact-error {
    padding: .9rem 1rem;
    border-radius: 12px;
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.contact-success {
    background: #e7fbe9;
    color: #1a7f37;
}

.contact-error {
    background: #fdeaea;
    color: #c62828;
}
