:root {
    --bg-color: #f7faff;
    --text-color: #222;
    --link-color: #0066cc;
    --accent-color: #555;
    --max-width: 750px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

body {
    background: radial-gradient(circle at center, #ffffff 0%, #eef5ff 100%);
    background-attachment: fixed;
    color: var(--text-color);
    font-family: var(--font-family);
    line-height: 1.6;
    padding: 60px 20px;
    min-height: 100vh;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    background: transparent;
}

header {
    margin-bottom: 50px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.title {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

a {
    color: var(--link-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

section {
    margin-bottom: 50px;
}

h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: capitalize;
    color: #444;
}

h2::before {
    content: "/ ";
    color: var(--link-color);
    opacity: 0.8;
}

.experience-item,
.education-item {
    margin-bottom: 30px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.item-title {
    font-weight: 700;
    font-size: 1.05rem;
}

.item-date {
    font-size: 0.9rem;
    color: var(--accent-color);
}

.item-org {
    display: block;
    font-style: italic;
    color: var(--accent-color);
    margin-bottom: 10px;
}

item-summary {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #444;
    line-height: 1.5;
}

ul {
    list-style: none;
}

li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

li::before {
    content: ">";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    opacity: 0.6;
    font-family: monospace;
}

.skills-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skill-category {
    font-size: 0.95rem;
}

.skill-category b {
    font-weight: 600;
}

@media (max-width: 600px) {
    body {
        padding: 40px 15px;
    }

    .item-header {
        flex-direction: column;
    }

    .item-date {
        margin-top: 5px;
    }
}