/* Apply Landing Page Styles */
body {
    background: #f5f5f7;
    color: #1d1d1f;
    padding-top: 100px;
}

/* Apply Section */
.apply-section {
    padding: 60px 80px 100px;
    max-width: 1600px;
    margin: 0 auto;
}

.apply-container {
    max-width: 1100px;
    margin: 0 auto;
}

.apply-header {
    text-align: center;
    margin-bottom: 60px;
}

.apply-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.apply-header p {
    font-size: 16px;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.apply-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.apply-card {
    background: white;
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: center;
}

.apply-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.card-icon svg {
    width: 40px;
    height: 40px;
    stroke: white;
}

.apply-card h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.apply-card p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 28px;
}

.apply-btn {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s, transform 0.2s;
}

.apply-btn:hover {
    background: #1e40af;
    transform: scale(1.05) translateY(-1px);
}

/* Team Card Differentiation */
.card-team {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: white;
}

.card-team h2 {
    color: white;
}

.card-team p {
    color: rgba(255, 255, 255, 0.85);
}

.card-icon-team {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.apply-btn-team {
    background: white;
    color: #1e3a8a;
}

.apply-btn-team:hover {
    background: #f0f4ff;
    color: #1e40af;
}

footer {
    margin-top: 80px;
}

/* Responsive */
@media (max-width: 1024px) {
    .apply-section {
        padding: 40px 40px 80px;
    }

    .apply-options {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .apply-info {
        flex-direction: column;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 80px;
    }

    .apply-section {
        padding: 30px 20px 60px;
    }

    .apply-header h1 {
        font-size: 32px;
    }

    .apply-header {
        margin-bottom: 40px;
    }

    .apply-card {
        padding: 36px 28px;
    }
}
