* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
    background: #f8fbff;
    color: #0f172a;
}

/* Navbar */

/*header {*/
/*    position: sticky;*/
/*    top: 0;*/
/*    background: white;*/
/*    border-bottom: 1px solid #e5e7eb;*/
/*}*/

/*.nav-wrap {*/
/*    width: min(1200px, 92%);*/
/*    margin: 0 auto;*/
/*    padding: 16px 0;*/

/*    display: flex;*/
/*    justify-content: space-between;*/
/*    align-items: center;*/
/*}*/

/*.logo {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    gap: 10px;*/

/*    font-size: 18px;*/
/*    font-weight: 700;*/
/*    color: #0f172a;*/
/*}*/

/*.logo-img {*/
/*    height: 52px;*/
/*    width: auto;*/
/*}*/

/*nav a {*/
/*    margin-left: 24px;*/
/*    text-decoration: none;*/
/*    color: #475569;*/
/*    font-weight: 500;*/
/*}*/

/*nav a:hover {*/
/*    color: #2563eb;*/
/*}*/

/* Resume page */

.resume-page {
    min-height: calc(100vh - 70px);
    padding: 70px 18px 90px;
    text-align: center;
}

.section-title h1 {
    margin: 0 0 14px;
    font-size: 42px;
    font-weight: 500;
}

.section-title p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 20px;
    color: #475569;
    line-height: 1.4;
}

/* Resume card */

.resume-card {
    width: min(540px, 92%);
    margin: 40px auto 0;
    padding: 34px 28px;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;

    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transition: 0.25s ease;
}

.resume-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.download-icon {
    width: 54px;
    height: 54px;
    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #eef2ff;
    color: #4f46e5;
    font-size: 32px;
    font-weight: 700;
}

.resume-card h2 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 600;
}

.resume-card p {
    margin: 0 auto 28px;
    max-width: 480px;
    color: #334155;
    font-size: 16px;
    line-height: 1.5;
}

.download-btn {
    display: inline-block;
    padding: 13px 26px;

    background: linear-gradient(135deg, #4f46e5, #6d28d9);
    color: white;

    border-radius: 9px;
    text-decoration: none;
    font-weight: 600;

    box-shadow: 0 8px 18px rgba(79, 70, 229, 0.25);
    transition: 0.25s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(79, 70, 229, 0.32);
}

/* Mobile */

@media (max-width: 768px) {
    .nav-wrap {
        flex-direction: column;
        gap: 14px;
    }

    nav a {
        margin: 0 8px;
    }

    .section-title h1 {
        font-size: 34px;
    }

    .section-title p {
        font-size: 17px;
    }
}