.file-upload-section {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.file-upload-section h6 {
    color: #495057;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 16px;
}

.file-input {
    border: 2px dashed #dee2e6;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.file-input:hover {
    border-color: #0B76C4;
    background-color: #f8f9ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 118, 196, 0.1);
}

.file-input input[type="file"] {
    display: none;
}

.file-input label {
    cursor: pointer;
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    transition: color 0.3s ease;
}

.file-input label:hover {
    color: #0B76C4;
}

.required-field {
    color: #dc3545;
}

.optional-field {
    color: #28a745;
    font-size: 12px;
}

.form-section-header {
    background: linear-gradient(135deg, #0B76C4 0%, #1e88e5 100%);
    color: white;
    padding: 15px 20px;
    margin: -10px -20px 20px -20px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 2px 10px rgba(11, 118, 196, 0.2);
}

.kyc-section {
    background-color: #fff;
    border: 1px solid #e8ecef;
    border-radius: 15px;
    padding: 30px;
    margin: 25px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-control {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.form-control:focus {
    border-color: #0B76C4;
    box-shadow: 0 0 0 0.2rem rgba(11, 118, 196, 0.1);
    transform: translateY(-1px);
}

.custom-select {
    border-radius: 8px;
    border: 1px solid #dee2e6;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

.custom-select:focus {
    border-color: #0B76C4;
    box-shadow: 0 0 0 0.2rem rgba(11, 118, 196, 0.1);
}

.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
    border: none;
    border-radius: 25px;
    padding: 12px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.3);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.btn-link {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #0B76C4;
    text-decoration: underline;
}

.main-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.logo-container {
    text-align: center;
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
    margin-top: 50px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.faq-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.faq-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #0B76C4 0%, #1e88e5 100%);
    border-radius: 2px;
}

.accordion .card {
    border: none;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.accordion .card-header {
    background: linear-gradient(135deg, #6c757d 0%, #0B76C4 70%);
    border: none;
    padding: 0;
}

.accordion .card-header h5 a {
    display: block;
    padding: 18px 25px;
    color: white !important;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.accordion .card-header h5 a:hover {
    background: rgba(255,255,255,0.1);
}

.accordion .card-body {
    padding: 25px;
    background-color: #f8f9fa;
    color: #495057;
    line-height: 1.6;
}

.footer-link {
    text-align: center;
    margin-top: 30px;
}

.footer-link .btn-link {
    background: linear-gradient(135deg, #0B76C4 0%, #0B76C4 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link .btn-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(11, 118, 196, 0.3);
    color: white !important;
}

@media (max-width: 768px) {
    .main-form-container {
        padding: 0 10px;
    }
    
    .kyc-section {
        padding: 20px;
        margin: 15px 0;
    }
    
    .form-section-header {
        margin: 20px -20px 15px -20px;
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .faq-card {
        padding: 25px;
    }
    
    .logo-container {
        padding: 20px 0;
    }
}