/* ===== Base Styles ===== */
:root {
    --royal-blue: #0a2463;
    --dark-blue: #1a2a6c;
    --aqua: #3e92cc;
    --green: #4cb944;
    --white: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem;
}

/* ===== Header Styles ===== */
header {
    background: linear-gradient(135deg, var(--dark-blue), var(--royal-blue));
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-bottom: 2rem;
}

h1 {
    margin: 0;
    font-size: 2.2rem;
}

.tagline {
    color: var(--aqua);
    font-weight: 600;
    margin-bottom: 0;
}

/* ===== Form Components ===== */
.intro-text {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--aqua);
}

.form-container {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

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

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--royal-blue);
}

select, input, textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

select:focus, input:focus, textarea:focus {
    border-color: var(--aqua);
    outline: none;
}

select[multiple] {
    height: 120px;
    padding: 0;
}

select[multiple] option {
    padding: 10px 15px;
}

.form-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.5rem;
}

/* ===== Button Styles ===== */
.btn {
    background-color: #7db343;
    color: var(--white);
    border: none;
    padding: 18px 30px;
    font-size:25px;
    font-weight: 600;
    border:2px solid #15346a;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
    max-width: 450px;
    margin: 2rem auto 0;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform:uppercase;

}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===== Checkbox Styles ===== */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
    margin: 0;
    cursor: pointer;
}

.checkbox-item label {
    margin: 0;
    cursor: pointer;
    font-weight: normal;
    color: #333;
}

/* ===== Radio Styles ===== */
.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.radio-item input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-item label {
    cursor: pointer;
    font-size: 16px;
    color: #333;
}

/* ===== Footer Styles ===== */
footer {
    text-align: center;
    margin-top: 3rem;
    color: #666;
    font-size: 0.9rem;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
}