* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.4;
    color: #333;
}

.cv-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Section */
.header {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    padding: 40px 30px;
    display: flex;
    gap: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 0px 0px 310px 0px;
    align-items: center;
    justify-content: center;
}

.header::before {
    content: '';
    position: absolute;
    right: -230px;
    top: -220px;
    width: 470px;
    height: 510px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid #dddddd;
}

.header::after {
    content: '';
    position: absolute;
    right: -240px;
    top: -510px;
    width: 650px;
    height: 650px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    border: 2px solid #ddd;
}

.profile-photo {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    border: 5px solid white;
    background: #ddd;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #666;
    position: relative;
    z-index: 2;
}

.header-info {
    color: white;
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.name {
    font-family: 'Quicksand', Arial, sans-serif;
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.title {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Main Content */
.content {
    display: flex;
    flex: 1;
}

.left-column {
    width: 35%;
    background: #f8f9fa;
    padding: 30px 25px;
}

.right-column {
    width: 65%;
    padding: 30px 35px;
}

.section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 5px;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.contact-icon {
    width: 20px;
    margin-right: 10px;
    color: #ff6b35;
    font-weight: bold;
}

/* Skills */
.skill-item {
    margin-bottom: 15px;
}

.skill-name {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.skill-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* Experience */
.experience-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.experience-item:last-child {
    border-bottom: none;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.job-title {
    font-weight: bold;
    color: #ff6b35;
    font-size: 16px;
}

.company {
    font-weight: bold;
    color: #333;
    margin-bottom: 3px;
}

.job-period {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-description {
    margin-top: 10px;
}

.job-description ul {
    list-style: none;
    padding-left: 0;
}

.job-description li {
    margin-bottom: 6px;
    padding-left: 15px;
    position: relative;
    font-size: 14px;
    line-height: 1.4;
}

.job-description li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Education */
.education-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.education-item:last-child {
    border-bottom: none;
}

.education-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
}

.education-institution {
    color: #ff6b35;
    font-weight: bold;
    margin-bottom: 3px;
}

.education-year {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.education-description {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* About */
.about-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

/* Languages */
.language-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.language-name {
    font-weight: bold;
}

.language-level {
    color: #666;
}

/* Other Data */
.other-item {
    margin-bottom: 8px;
    font-size: 14px;
    padding-left: 15px;
    position: relative;
}

.other-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ff6b35 0%, #ffa726 100%);
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: auto;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: end;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-right {
    font-size: 12px;
    opacity: 0.9;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-contact {
        flex-direction: column;
        gap: 8px;
    }
}

.profile-photo::before {
    content: '';
    position: absolute;
    right: -26px;
    top: -25px;
    width: 230px;
    height: 230px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 2px solid #ffffff;
}

@media (max-width: 768px) {
    .cv-container {
        margin: 0;
    }

    .header {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .name {
        font-size: 36px;
    }

    .content {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        width: 100%;
        padding: 20px;
    }

    .job-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header {
        border-radius: 20px 200px 200px 20px;
    }
}