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

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    line-height: 1.5;
    color: #333;
    background-color: #FAF7F0;
    font-size: 16px;
}

.social-icons {
    position: absolute;
    top: 40px;
    right: calc(50% - 380px);
    display: flex;
    gap: 15px;
    z-index: 100;
}

@media (max-width: 840px) {
    .social-icons {
        right: 20px;
    }
}

.social-icons a {
    color: #666;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
}

.social-icons svg {
    display: block;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: left;
    margin-bottom: 40px;
}

h1 {
    font-size: 1.8rem;
    font-weight: normal;
    color: #2c3e50;
    margin-bottom: 15px;
}

h2 {
    font-size: 1.3rem;
    font-weight: normal;
    color: #34495e;
    margin-bottom: 15px;
}

h3 {
    font-size: 1.1rem;
    font-weight: normal;
    color: #34495e;
    margin-bottom: 8px;
}

.intro {
    text-align: left;
    font-size: 0.95rem;
    margin-bottom: 40px;
    color: #555;
    line-height: 1.6;
}

.intro a {
    color: #2c3e50;
    text-decoration: underline;
}

.intro a:hover {
    color: #1a2332;
}

.intro p {
    margin-bottom: 20px;
}

.intro p:last-child {
    margin-bottom: 0;
}

.social-links {
    margin-bottom: 50px;
}

.links {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: wrap;
}

.links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 16px;
    border: 1px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.links a:hover {
    background-color: #2c3e50;
    color: #FAF7F0;
}

.projects {
    margin-bottom: 50px;
}

.project {
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    transition: transform 0.2s ease, padding-left 0.2s ease;
}

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

.project:hover {
    transform: translateX(5px);
    padding-left: 5px;
}

.project p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

footer {
    text-align: left;
    padding-top: 30px;
    border-top: 1px solid #ddd;
    color: #777;
    font-size: 0.8rem;
}

.navigation-link {
    margin: 40px 0;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.nav-link:hover {
    border-bottom-color: #2c3e50;
}

.breadcrumb {
    margin: 20px 0;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #2c3e50;
}

@media (max-width: 600px) {
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.2rem;
    }
    
    h3 {
        font-size: 1rem;
    }
    
    .links {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .links a {
        width: auto;
        text-align: center;
    }
}