* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: #f3f3f3;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.cv-container {
    background: white;
    max-width: 700px;
    width: 100%;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.profile {
    text-align: center;
}

.profile img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ccc;
}

.profile h1 {
    font-size: 22px;
    margin-top: 10px;
}

.profile .position {
    font-size: 16px;
    font-weight: bold;
    color: #666;
}

.profile a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

.section {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

.section h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.skills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.skills span {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    display: inline-block;
}

.section p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}
