* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Banner - Blue Background */
.header-banner {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px var(--shadow-medium);
}

.header-banner h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.header-banner h1 span {
    display: block;
    font-size: 24px;
    font-weight: 400;
    opacity: 0.95;
}

/* Main Form Container */
.form-container {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 6px 20px var(--shadow-color);
    overflow: hidden;
    margin-bottom: 60px;
}

/* Section Styling */
.form-section {
    padding: 40px;
    border-bottom: 1px solid var(--border-light);
}

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

.section-title {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 800px;
}

/* Ways to Help Section */
.ways-to-help {
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
}

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.help-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.help-option:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(22, 106, 234, 0.1);
}

.help-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(22, 106, 234, 0.05);
}

.option-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.help-option.selected .option-checkbox {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.help-option.selected .option-checkbox:after {
    content: '✓';
    color: var(--text-white);
    font-weight: bold;
    font-size: 14px;
}

.option-content h4 {
    color: var(--text-color);
    margin-bottom: 5px;
    font-size: 18px;
}

.option-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.4;
}

/* Contact Information Section */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
    font-size: 15px;
}

.form-label .required {
    color: #e74c3c;
    margin-left: 3px;
}

.form-label .optional {
    color: var(--text-light);
    font-weight: normal;
    font-size: 13px;
    margin-left: 5px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    background-color: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(22, 106, 234, 0.1);
}

.message-group {
    margin-top: 10px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

/* Submit Button */
.submit-section {
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.btn-submit {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: var(--text-white);
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(231, 76, 60, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Success Message */
.success-message {
    display: none;
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: var(--text-white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
}

.success-message i {
    font-size: 50px;
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-banner {
        padding: 30px 0;
    }
    
    .header-banner h1 {
        font-size: 26px;
    }
    
    .header-banner h1 span {
        font-size: 20px;
    }
    
    .form-section {
        padding: 30px 25px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .help-options {
        grid-template-columns: 1fr;
    }
    
    .btn-submit {
        width: 100%;
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .header-banner h1 {
        font-size: 22px;
    }
    
    .header-banner h1 span {
        font-size: 18px;
    }
    
    .form-section {
        padding: 25px 20px;
    }
    
    .section-title {
        font-size: 22px;
    }
}

/* Form Validation */
.form-control.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}