:root {
    --primary: #163a63;
    --text: #222;
    --border: #d7dce3;
    --background: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3 {
    font-weight: 600;
}


.container {
    width: 92%;
    max-width: 1200px;
    margin: 30px auto;
    background: white;
    border: 1px solid var(--border);
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
}

.logo {
    text-decoration: none;
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 600;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
}

nav a:hover {
    text-decoration: underline;
}

.hero {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--border);
}

.hero img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
}

.page-header {
    padding: 60px 40px 20px;
}

.page-header h1 {
    color: var(--primary);
    font-size: 2.5rem;
}

.content {
    min-height: 500px;
    padding: 40px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.content h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

.cv-button {
    display: inline-block;
    margin-top: 20px;
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
}

.cv-button:hover {
    background: #0f2946;
}







@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .logo {
        text-align: center;
    }

    .content,
    .page-header {
        padding: 25px;
    }

    .hero {
        height: 220px;
    }

    .hero img {
        width: 140px;
        height: 140px;
    }
}
