@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: #f4f7fb;
    color: #333;
}

.cv-container {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-section {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.profile-photo {
    width: 160px;
    height: 260px;
    border-radius: 6px;
    object-fit: cover;
    border: 4px solid #e0e6f1;
}

.header-text h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #1a4fa3;
}

.header-text h2 {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #1a4fa3;
}

.section {
    margin-top: 40px;
}

.section h2 {
    color: #1a4fa3;
    border-bottom: 2px solid #dce3f0;
    padding-bottom: 6px;
    font-weight: 600;
}

h3 {
    margin-top: 20px;
    font-weight: 600;
    color: #2a2a2a;
}

.date {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

ul {
    margin-left: 20px;
    line-height: 1.6;
}

p {
    line-height: 1.6;
}
