
:root {
    --primary-green: #00B67A;
    --primary-teal: #00B5B5;
    --primary-yellow: #FFF8E7;
    --primary-pink: #FFE5F9;
    --text-dark: #333;
    --error-red: #e74c3c;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-pink) 100%);
    color: var(--text-dark);
    min-height: 100vh;
    line-height: 1.6;
}

/* Header Styles */
.header {
    width: 100%;
    position: relative;
    height: 200px;
    background: white;
}

.banner-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-container {
    position: absolute;
    left: 40px;
    top: 40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
    z-index: 10;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Progress Bar Styles */
.progress-section {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    z-index: 100;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-pink) 100%);
}

.progress-bar {
    display: flex;
    gap: 30px;
    position: relative;
    margin: 0 auto;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    height: 2px;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.step {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    color: #666;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    border: 2px solid #ddd;
}

.step.active {
    background: var(--primary-teal);
    color: white;
    border-color: var(--primary-teal);
}

/* Main Content Styles */
.main-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.section-title {
    text-align: center;
    color: var(--primary-green);
    margin: 30px 0 15px;
    font-size: 2em;
}

.section-subtitle {
    text-align: center;
    color: var(--primary-teal);
    margin: 20px 0 10px;
    font-size: 1.5em;
}

.section-subtitle2 {
    
    color: var(--primary-green);
    font-size: 1.5em;
}

.intro-text {
    text-align: center;
    margin: 20px 0;
    line-height: 1.6;
    color: #666;
}

.support-text {
    text-align: center;
    margin: 30px 0;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
}

/* Enhanced Form Control Styles */
.form-group {
    margin-bottom: 30px;
    position: relative;
}

/* Enhanced Input Styles */
input[type="text"],
input[type="email"],
input[type="url"] {
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(0, 181, 181, 0.2);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus {
    border-color: var(--primary-teal);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 181, 181, 0.15);
    transform: translateY(-1px);
}

/* Custom Select Dropdown */
.select-wrapper {
    position: relative;
}

select {
    appearance: none;
    width: 100%;
    padding: 16px;
    border: 2px solid rgba(0, 181, 181, 0.2);
    border-radius: 12px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-teal);
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper:hover::after {
    transform: translateY(-50%) rotate(180deg);
}

select:focus {
    border-color: var(--primary-teal);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 181, 181, 0.15);
    transform: translateY(-1px);
}

/* Enhanced File Upload Area */
.file-upload-container {
    border: 2px dashed rgba(0, 181, 181, 0.4);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    cursor: pointer;
}

.file-upload-container:hover {
    border-color: var(--primary-teal);
    background: white;
    box-shadow: 0 4px 12px rgba(0, 181, 181, 0.15);
}

.file-upload-icon {
    font-size: 40px;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.file-upload-text {
    color: #666;
    margin-bottom: 10px;
}

.file-upload-container input[type="file"] {
    display: none;
}

.selected-files {
    margin-top: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    display: none;
}

.selected-files.show {
    display: block;
}

/* Enhanced Button Styles */
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

button {
    padding: 16px 40px;
    border: none;
    border-radius: 30px;
    background: var(--primary-teal);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    min-width: 160px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 181, 181, 0.2);
    position: relative;
    overflow: hidden;
}

button:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 182, 122, 0.25);
}

button.back {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
    box-shadow: none;
}

button.back:hover {
    background: rgba(0, 181, 181, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Checkbox Style */
.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.checkbox-wrapper:hover {
    background: white;
    box-shadow: 0 4px 12px rgba(0, 181, 181, 0.15);
}

.checkbox-wrapper input[type="checkbox"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 2px solid var(--primary-teal);
    border-radius: 6px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked {
    background: var(--primary-teal);
}

.checkbox-wrapper input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Error Styles */
.error-message {
    color: var(--error-red);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

input.error,
select.error {
    border-color: var(--error-red);
}

/* Button Styles */
.button-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

button {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    background: var(--primary-teal);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    min-width: 150px;
}

button:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

button:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Multi-page form styles */
.form-page {
    display: none; /* Hide all form pages by default */
}

.form-page.active {
    display: block; /* Show the active form page */
}