:root {
    --primary-color: #5b524d;
    --secondary-color: #e6e0d9;
    --text-color: #333;
    --light-text: #666;
    --background-color: #f7f6f3;
    --white: #ffffff;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.resume-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 12px;
    gap: 20px;
}

.left-column, .right-column {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.profile {
    text-align: center;
    padding-bottom: 20px;
}

.profile img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.profile img:hover {
    transform: scale(1.05);
}

.profile h2 {
    margin-top: 15px;
    font-size: 32px;
    color: var(--primary-color);
}

.profile p {
    font-size: 16px;
    color: var(--light-text);
}

.about h2, .contact h2, .skills h2, .education h2, .hobbies h2, .soft-skills h2 {
    color: var(--primary-color);
    font-size: 22px;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 5px;
}

.about p {
    line-height: 1.6;
    color: var(--light-text);
}

.contact p, .skills ul, .education ul, .hobbies ul, .soft-skills ul {
    font-size: 15px;
    color: var(--light-text);
    margin: 8px 0;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 10px;
}

@media (max-width: 768px) {
    .resume-container {
        flex-direction: column;
        margin: 20px;
        padding: 15px;
    }

    .left-column, .right-column {
        padding: 10px;
    }

    .profile img {
        width: 150px;
        height: 150px;
    }

    .profile h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .profile img {
        width: 120px;
        height: 120px;
    }

    .profile h2 {
        font-size: 24px;
    }
}
