body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #f4f6f8;
    margin: 0;
}

.cv-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Sidebar */
.sidebar {
    width: 32%;
    background: #0f172a;
    color: #fff;
    padding: 30px;
}

.sidebar h1 {
    margin: 0;
    font-size: 26px;
}

.sidebar h2 {
    font-size: 16px;
    font-weight: 400;
    color: #38bdf8;
}

.sidebar h3 {
    margin-top: 25px;
    border-bottom: 1px solid #334155;
}

.sidebar ul {
    list-style: none;
    padding-left: 0;
}

/* Content */
.content {
    width: 68%;
    padding: 40px;
}

.content h2 {
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 10px;
}

.experience {
    margin-bottom: 30px;
}

.experience h3 {
    margin-bottom: 5px;
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.experience-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    background: #fff;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.date {
    font-size: 14px;
    color: #64748b;
}

.tech {
    font-style: italic;
    color: #475569;
}

.profile-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.profile-photo img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #38bdf8;
    background: white;
    border-color: white !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .profile-photo img {
        width: 110px;
        height: 110px;
    }
}

/* =======================
   VERSION PDF / PRINT
   ======================= */
/* @media print {

    body {
        color: #ffffff !important;
    }

    .btn-pdf {
        display: none;
    }

    .cv-container {
        box-shadow: none;
        margin: 0;
        max-width: 100%;
    }   
    
    .profile-photo img {
        border-color: white !important;
    }

    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }

    .sidebar {
        background: #0f172a !important;
        color: #ffffff !important;
    }

    a {
        color: inherit;
        text-decoration: none;
    }

    .experience {
        page-break-inside: avoid;
    }
}
@page {
    size: A4;
    margin: 12mm;
} */

