.support-page-main .container {
    padding-top: 2rem; 
    padding-bottom: 4rem;
}

.support-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.support-text-content h1 {
    /* Uses h1 styles from typography-modern.css */
    margin-bottom: 1.5rem;
}

.support-text-content p {
    font-size: 1rem; /* Ensure readability */
    line-height: 1.6;
    color: #333;
    margin-bottom: 1rem;
}

.support-form-content .form-group {
    margin-bottom: 1.5rem;
}

.support-form-content .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500; /* Existing form label style */
}

.radio-group-container > label {
    margin-bottom: 0.75rem; /* More space for main label of radio group */
}

.radio-options-inline {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 1.5rem; /* Space between radio options */
    align-items: center;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Space between radio and its label */
}

.radio-option input[type="radio"] {
    width: auto; /* Override default form-control width if it applies */
    margin-right: 0; /* Remove default if any */
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    outline: none;
}

.radio-option input[type="radio"]:checked {
    border-color: #000;
}

.radio-option input[type="radio"]:checked::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-option label {
    font-weight: normal; /* Override bold form-group label */
    margin-bottom: 0; /* Reset margin */
    cursor: pointer;
}

.support-form-content .form-control {
    /* Uses existing .form-control styles */
}

.support-form-content .textarea-field {
    min-height: 120px; /* Adjust as needed for this form */
}

.support-form-content .form-actions {
    /* Uses existing .form-actions styles */
    margin-top: 1.5rem;
}

/* Display messages */
.support-form-content .message {
    padding: 1rem;
    border-radius: 0; /* Consistent with other alerts/messages */
}

.support-form-content .success-message {
    /* Uses existing .success-message styles from base.css */
}

.support-form-content .error-message {
    /* Uses existing .error-message styles from base.css */
}

/* Desktop layout: text on left, form on right */
@media (min-width: 992px) { 
    .support-content-wrapper {
        flex-direction: row;
        gap: 4rem; /* More space between columns on desktop */
    }
    .support-text-content {
        flex: 1;
    }
    .support-form-content {
        flex: 1.2; /* Give form slightly more space if desired */
        max-width: 600px; /* Max width for the form */
    }
} 