body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #e9ecef;
    color: #343a40;
}

.container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
}

.header h1 {
    margin: 0.5rem 0;
    color: #0056b3;
    font-size: 2.8em;
}

.header p {
    margin: 0.3rem 0;
    color: #555;
    font-size: 1.1em;
}

.contact-info {
    margin-top: 1rem;
}

.contact-info p {
    margin: 0.1rem 0;
}

.contact-info a {
    text-decoration: none;
    color: #007bff;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #0056b3;
}

.language-switcher {
    margin-top: 1.5rem;
}

.language-switcher button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    margin: 0 0.3rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95em;
    transition: background 0.3s ease;
}

.language-switcher button:hover {
    background: #0056b3;
}

.language-switcher button.active {
    background: #0056b3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.profile-pic {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 2rem;
    border: 5px solid #007bff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.content {
    padding-top: 1.5rem;
}

section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

h2 {
    color: #0056b3;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.8em;
    border-bottom: none;
    padding-bottom: 0;
}

.job, .education {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    border-left: 3px solid #ced4da;
}

h3 {
    margin-bottom: 0.3rem;
    color: #343a40;
    font-size: 1.3em;
}

.company, .university, .date {
    font-style: normal;
    color: #6c757d;
    font-size: 0.95em;
    margin-bottom: 0.5rem;
}

ul {
    padding-left: 1.8rem;
    list-style-type: disc;
}

ul li {
    margin-bottom: 0.5rem;
}

.footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dee2e6;
}

#download-pdf {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 0.8rem 1.8rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.2s ease;
}

#download-pdf:hover {
    background: #218838;
    transform: translateY(-2px);
}