h2 { color: #1a1a2e; margin-bottom: 1.5rem; }

    .form-card {
        background: #fff;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 2rem;
        max-width: 680px;
    }

    .form-section {
        margin-bottom: 1.75rem;
        padding-bottom: 1.75rem;
        border-bottom: 1px solid #eee;
    }

    .form-section:last-of-type { border-bottom: none; }

    .form-section h3 {
        font-size: 1rem;
        color: #d4af37;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 1rem;
    }

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

    .form-group { margin-bottom: 1rem; }

    label { display: block; font-size: 0.9rem; color: #555; margin-bottom: 0.3rem; }

    input[type=text], input[type=email], input[type=date],
    input[type=file], select, textarea {
        width: 100%;
        padding: 0.55rem 0.75rem;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-family: Georgia, serif;
        font-size: 0.95rem;
        background: #fafafa;
    }

    textarea { resize: vertical; min-height: 120px; }
    .error { color: #c0392b; font-size: 0.85rem; margin-top: 0.25rem; }

    .checkbox-group {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .checkbox-group input { width: auto; }
