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

body {
    font-family: Georgia, 'Times New Roman', serif;
    background: #e0e0e0;
    color: #1a1a1a;
    line-height: 1.5;
    min-height: 100vh;
}

.top-bar {
    background: #1a1a1a;
    height: 40px;
    width: 100%;
}

.cv {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 80px;
    min-height: calc(100vh - 40px);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    gap: 30px;
}

.name {
    font-family: 'Arial Black', 'Helvetica', sans-serif;
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    text-transform: uppercase;
    word-spacing: -0.1em;
    flex: 1;
}

.photo {
    width: 160px;
    height: 160px;
    object-fit: cover;
    flex-shrink: 0;
}

.photo-placeholder {
    background: #d0d0d0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-family: Arial, sans-serif;
    font-size: 0.9rem;
}

/* Content - 2 columns */
.content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
}

/* Sections */
.section,
.contact {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.contact {
    padding-top: 20px;
}

h2 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    white-space: nowrap;
}

/* Contact */
.contact-email,
.contact-phone {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-email a {
    color: inherit;
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.contact-details {
    margin-top: 15px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Bullet lists */
.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.bullet-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 7px;
    height: 7px;
    background: #1a1a1a;
}

/* Experiences */
.right-column h2 {
    margin-bottom: 25px;
}

.experience {
    margin-bottom: 28px;
}

.exp-meta {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 6px;
    white-space: nowrap;
}

.exp-separator {
    margin: 0 8px;
}

.exp-title {
    font-style: italic;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.exp-description {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

/* Responsive - only for actual screens */
@media screen and (max-width: 768px) {
    .cv {
        padding: 30px 25px;
    }

    .header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .name {
        font-size: 2.5rem;
    }

    .content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .photo {
        width: 120px;
        height: 120px;
    }
}

/* Print - A4 layout */
@page {
    size: A4;
    margin: 0;
}

@media print {
    body {
        background: white;
    }

    .top-bar {
        height: 20px;
    }

    .cv {
        box-shadow: none;
        padding: 25px 40px;
        max-width: 100%;
        min-height: auto;
    }

    .header {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }

    .name {
        font-size: 3rem;
    }

    .photo {
        width: 140px;
        height: 140px;
    }

    .content {
        grid-template-columns: 1fr 1.3fr;
        gap: 30px;
    }

    .experience {
        page-break-inside: avoid;
    }
}
