:root {
    /* Colors */
    --color-primary: #c54b74; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary) 100%);
    color: white;
    padding: 40px;
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 300;
}

.header-subtitle {
    font-size: 1.2em;
    margin-top: 10px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
    font-size: 0.95em;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.content {
    padding: 40px;
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 1.8em;
    color: var(--color-primary); 
    border-bottom: 3px solid var(--color-primary);
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-weight: 600;
}

.experience-item,
.education-item {
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 3px solid #e0e0e0;
    position: relative;
}

.experience-item::before,
.education-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 11px;
    height: 11px;
    background: var(--color-primary);
    border-radius: 50%;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.job-title {
    font-size: 1.3em;
    font-weight: 600;
    color: var(--color-primary);
}

.job-period {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95em;
}

.company {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.tasks {
    list-style: none;
    margin-top: 10px;
}

.tasks li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    color: #555;
}

.tasks li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 1.2em;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.skill-category {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.skill-category h3 {
    color: var(--color-primary);
    margin-bottom: 15px;
    font-size: 1.1em;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 5px 0;
    color: #555;
}

.languages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.language-item {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.language-name {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1em;
    margin-bottom: 10px;
}

.language-level {
    color: #666;
    font-size: 0.9em;
}

.interests {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
}

.interests ul {
    list-style: none;
    columns: 2;
    column-gap: 30px;
}

.interests li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #555;
}

.interests li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.personal-info {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.personal-info p {
    margin-bottom: 15px;
}

.personal-info p:last-child {
    margin-bottom: 0;
}

@media print {
    body {
        background: white;
    }

    .container {
        box-shadow: none;
    }
}

.muted-italic {
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
}

.badge-highlight {
    color: var(--color-primary);
    font-weight: 600;
    margin: 10px 0;
}

.small-muted {
    font-size: 0.85em;
    color: #666;
    margin-top: 5px;
}

.text-muted {
    color: #666;
}

.text-muted-sm {
    font-size: 0.9em;
    color: #666;
}

.consent-text {
    font-size: 0.85em;
    color: #999;
    margin-top: 15px;
}
