.partner-container {
    min-height: 100vh;
    background: #f5f5f5;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f85606 0%, #ff8533 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 20px;
    background: white;
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card i {
    font-size: 40px;
    color: #f85606;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Form Section */
.form-section {
    padding: 60px 20px;
}

.form-card {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Steps Indicator */
.steps-indicator {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.step::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #e0e0e0;
    top: 20px;
    left: 50%;
    z-index: 1;
}

.step:last-child::after {
    display: none;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #666;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: #f85606;
    color: white;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step-label {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* Form Steps */
.form-step {
    display: none;
    padding: 30px;
}

.form-step.active {
    display: block;
}

.form-step h3 {
    margin-bottom: 25px;
    color: #333;
    font-size: 24px;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.category-item {
    position: relative;
}

.category-item input[type="checkbox"] {
    display: none;
}

.category-item label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-item input[type="checkbox"]:checked + label {
    border-color: #f85606;
    background: #fff5f2;
}

.category-item i {
    font-size: 24px;
    margin-bottom: 10px;
    color: #f85606;
}

/* Document Upload */
.document-upload {
    margin-bottom: 20px;
}

.upload-area {
    border: 2px dashed #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-area:hover {
    border-color: #f85606;
    background: #fff5f2;
}

.upload-area i {
    font-size: 30px;
    color: #f85606;
    margin-bottom: 10px;
}

.file-input {
    display: none;
}

/* Verification Section */
.verification-section {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 20px;
}

.verification-item {
    display: flex;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.verification-item:last-child {
    border-bottom: none;
}

.verification-item i {
    font-size: 24px;
    color: #f85606;
    margin-right: 15px;
}

.verification-text {
    flex: 1;
}

.verification-text h4 {
    margin: 0;
    font-size: 16px;
}

.verification-text p {
    margin: 5px 0 0;
    font-size: 14px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .steps-indicator {
        padding: 15px;
    }

    .step-label {
        font-size: 12px;
    }

    .form-step {
        padding: 20px;
    }
} 