/* 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: #3d3d3d;
    background-color: #f5f1ed;
}

/* Container */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding-bottom: 60px;
    border-bottom: 1px solid #ddd5cc;
    margin-bottom: 60px;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d2d2d;
}

.tagline {
    font-size: 1.1rem;
    color: #6b6b6b;
    margin-bottom: 24px;
}

.links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.links a {
    color: #8b7355;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.links a:hover {
    color: #6b5744;
    text-decoration: underline;
}

/* Sections */
section {
    margin-bottom: 60px;
}

section h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #2d2d2d;
}

/* About Section */
.about p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.8;
}

/* Education Section */
.education-item {
    margin-bottom: 32px;
}

.education-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.institution {
    font-size: 1.05rem;
    color: #8b7355;
    margin-bottom: 4px;
}

.duration {
    font-size: 0.95rem;
    color: #6b6b6b;
}

/* Experience Section */
.experience-item {
    margin-bottom: 40px;
}

.experience-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d2d2d;
    margin-bottom: 6px;
}

.company {
    font-size: 1.05rem;
    color: #8b7355;
    margin-bottom: 4px;
}

.experience-item ul {
    margin-top: 12px;
    margin-left: 20px;
}

.experience-item li {
    margin-bottom: 8px;
    color: #5a5a5a;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 600px) {
    .container {
        padding: 40px 16px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .links {
        gap: 16px;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
}
