.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 140px 20px 60px;
    text-align: left;
}

.contact-heading {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.contact-lead {
    margin-bottom: 40px;
    color: #666;
}

.form-group {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
}

.form-group > label,
.form-group legend {
    display: block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: bold;
}

.form-group input:not([type='radio']):not([type='checkbox']),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #aaa;
    border-radius: 4px;
    font: inherit;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
}

.radio-group legend {
    width: 100%;
}

.radio-option {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    cursor: pointer;
    font-weight: normal !important;
}

.radio-option input {
    width: 1.1rem;
    height: 1.1rem;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 2px;
    background: #111;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #444;
}

.msg-success {
    margin-bottom: 30px;
    padding: 24px;
    background: #e8f5e9;
    color: #1b5e20;
    border-radius: 4px;
    font-size: 1rem;
    line-height: 1.6;
}

.msg-error {
    margin-bottom: 24px;
    padding: 16px;
    background: #ffebee;
    color: #a01818;
    border-radius: 4px;
    font-size: 0.95rem;
}

.msg-error ul {
    padding-left: 1.5em;
}

.complete-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-action-primary,
.btn-action-secondary {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 2px;
    text-align: center;
    text-decoration: none;
    font-size: 0.95rem;
}

.btn-action-primary {
    padding-inline: 30px;
    background: #111;
    color: #fff;
    font-weight: bold;
}

.btn-action-primary:hover {
    background: #444;
}

.btn-action-secondary {
    border: 1px solid #aaa;
    background: #fff;
    color: #333;
}

.btn-action-secondary:hover {
    background: #f5f5f5;
}

@media (max-width: 600px) {
    .contact-wrapper {
        padding-top: 110px;
    }

    .complete-actions {
        flex-direction: column;
    }
}
