body {
    margin: 0;
    font-family: Inter, sans-serif;
    background: #ffffff;
    color: #555;
    line-height: 1.65;
}

.container {
    max-width: 720px;
    margin: 50px auto;
    padding: 0 20px;
}

.header {
    display: flex;
    justify-content: space-between;
}

.name {
    letter-spacing: 0.1rem;
}

.lang-switch button {
    font-size: 1rem;
    border: none;
    border-radius: 4px;
}

.lang-switch button.active {
    border: 1px solid black;
}

hr {
    border: none;
    border-top: 1px solid #e5e5e5;
}

.content-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 3rem;
}

.text-content {
    flex: 1;
    max-width: 600px;
}

.photo-content {
    flex-shrink: 0;
}

.photo-content img {
    width: auto;
    height: 280px;
    display: block;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .content-layout {
        flex-direction: column;
    }

    .photo-content img {
        height: 280px;
    }
}

h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.25rem;
    margin-top: 1rem;
}

.intro {
    margin-bottom: 1.5rem;
}

.tech-stack {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.75;
    letter-spacing: 0.1em;
}

.capabilities {
    list-style: none;
    padding: 0;
    margin: 0;
}

.capabilities li {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.capabilities li::before {
    content: "–";
    position: absolute;
    left: 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.contact a {
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.contact a:hover {
    border-bottom: 1px solid #555;
}
