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

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

.container {
    width: 100%;
    max-width: 1100px;
    min-height: 90vh;
    background-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cv-row {
    display: grid;
    grid-template-columns: 1fr 2fr; 
    min-height: 90vh;
}

.sidebar {
    display: flex;
    flex-direction: column;
}

.sidebar-top-dark {
    background-color: #1c5c7d;
    padding: 25px;
    text-align: center;
}

.sidebar-bottom-teal {
    background-color: #2b92ae;
    padding: 25px;
    flex-grow: 1;
}

.profile-img-container {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 4px solid white;
    margin: 0 auto 15px auto;
    overflow: hidden;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-title-left {
    font-size: 1.1rem;
    margin: 15px 0 10px 0;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 3px;
    text-transform: uppercase;
}

.sidebar h2, .sidebar p, .sidebar li {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 6px;
    list-style-position: inside;
}

.sub-title {
    font-weight: bold;
    margin-top: 10px;
}

.progress-bar {
    background-color: #1c5c7d;
    height: 8px;
    border-radius: 4px;
    margin: 4px 0 10px 0;
    overflow: hidden;
}

.progress {
    background-color: #ef9b24; 
    height: 100%;
}

.main-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.header-box {
    background-color: #1c5c7d;
    color: white;
    padding: 25px;
    border: 3px solid #ef9b24;
}

.header-box h1 { font-size: 2.3rem; }
.header-box p { color: #ffffff; margin-top: 5px; }

.section-box {
    margin-bottom: 10px;
}

.section-title-right {
    background-color: #2b92ae;
    color: white;
    padding: 6px 12px;
    font-weight: bold;
    margin-bottom: 10px;
}

.main-content p, .main-content li {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.4;
}

.main-content h4 { color: #1c5c7d; margin-top: 10px; }
.date { color: #666; font-size: 0.85rem; }
.institution { font-weight: bold; color: #444; }
.main-content ul { margin-left: 20px; }