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

/* Coming Soon Section */
.coming-soon-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.coming-soon-container {
    text-align: center;
    max-width: 520px;
}

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

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

.coming-soon-container h1 {
    font-size: 48px;
    font-weight: 800;
    color: #1d1d1f;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.coming-soon-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #2563eb;
    margin-bottom: 20px;
}

.coming-soon-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 40px;
}

.coming-soon-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-back-home {
    background: white;
    color: #1d1d1f;
    border: 2px solid #d1d5db;
    padding: 12px 32px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-back-home:hover {
    border-color: #1d1d1f;
    transform: translateY(-1px);
}

.btn-apply-cta {
    background: #1e3a8a;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}

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

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

    .coming-soon-container h1 {
        font-size: 36px;
    }

    .coming-soon-buttons {
        flex-direction: column;
        align-items: center;
    }
}
