/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    max-width: 640px;
    margin: 0 1rem;
    padding: 3rem 3rem;
}

/* Header */
header {
    margin-bottom: 48px;
}

header h1 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #000;
}

/* Sections */
section {
    margin-bottom: 48px;
}

section h2 {
    font-size: 0.96rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

section p {
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 16px;
    max-width: 480px;
}

/* About section */
.about p {
    line-height: 1.7;
}

/* Links in more on section */
.more-on a {
    color: #2027ff;
    text-decoration: none;
}

.more-on a:visited {
    color: #2027ff;
}

.more-on a:hover {
    color: #dfdddd;
}


/* Consulting section styles */

.consulting-item-title {
    font-size: 0.84rem;
    font-weight: 400;
    color: #000;
    margin: 0;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.5px; */
}
.consulting-item-title:hover {
    color: #dfdddd;
}

.consulting-item-description {
    margin: 0;
}

/* Career section styles */


.experience-item-title {
    font-size: 0.94rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.experience-item-date {
    font-size: 0.96rem;
    font-weight: 500;
    margin-bottom: 32px;
    margin-left: 16px;
    color: #000;
    text-align: right;
}

/* Education section styles */

.education-item-title {
    font-size: 0.94rem;
    font-weight: 400;
    margin-bottom: 4px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}


/* Projects */
.project-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-item {
    border-bottom: 1px solid #eee;
    padding-bottom: 16px;
}

.project-item:last-child {
    border-bottom: none;
}

.project-item h3 {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: #000;
}

.project-item p {
    font-size: 0.72rem;
    color: #666;
    margin-bottom: 0;
}

/* Contact */
.contact-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-links a {
    color: #000;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.contact-links a:hover {
    color: #666;
}

/* Mobile styles */
@media (max-width: 768px) {
    body {
        padding: 16px 12px;
    }
    
    header {
        margin-bottom: 32px;
    }
    
    header h1 {
        font-size: 1.44rem;
    }
    
    section {
        margin-bottom: 32px;
    }
    
    section h2 {
        font-size: 0.88rem;
    }
    
    .contact-links {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 12px 8px;
    }
    
    header h1 {
        font-size: 1.28rem;
    }
    
    section h2 {
        font-size: 0.8rem;
    }
    
    section p {
        font-size: 0.76rem;
    }
}