    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #f5f5f5;
        color: #1b263b;
        padding: 20px;
        line-height: 1.6;
    }
    .cv-container {
        display: flex;
        max-width: 1000px;
        margin: 0 auto;
        background: #ffffff;
        box-shadow: 0 0 20px rgba(0,0,0,0.1);
        min-height: 100vh;
    }

    /* Left Section */
    .left-side {
        background: #2c3e50;
        color: #fff;
        width: 35%;
        padding: 40px 30px;
    }
    .profile-img {
        width: 150px;
        height: 150px;
        border-radius: 10px;
        object-fit: cover;
        border: 4px solid #4da8da;
        margin-bottom: 30px;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
    .section-title {
        font-weight: 700;
        text-transform: uppercase;
        margin-top: 30px;
        margin-bottom: 15px;
        font-size: 14px;
        letter-spacing: 1px;
        color: #4da8da;
        border-bottom: 2px solid #4da8da;
        padding-bottom: 8px;
    }
    .left-side p {
        font-size: 14px;
        line-height: 1.6;
        color: #ecf0f1;
        margin-bottom: 10px;
    }
    .contact-item {
        margin: 12px 0;
        font-size: 14px;
        color: #ecf0f1;
        display: flex;
        align-items: flex-start;
        gap: 10px;
    }
    .contact-icon {
        font-size: 16px;
        margin-top: 2px;
    }

    /* Right Section */
    .right-side {
        width: 65%;
        padding: 40px 50px;
        background: #ffffff;
    }
    .name {
        font-size: 36px;
        font-weight: 800;
        color: #1b263b;
        margin-bottom: 8px;
        letter-spacing: -1px;
    }
    .job-title {
        font-size: 20px;
        color: #4da8da;
        font-weight: 600;
        margin-bottom: 20px;
    }
    .divider {
        border: none;
        height: 3px;
        background: linear-gradient(90deg, #4da8da 0%, transparent 100%);
        width: 80px;
        margin: 20px 0 30px 0;
    }
    .section {
        margin-bottom: 35px;
    }
    .section h3 {
        color: #1b263b;
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 20px;
        border-left: 4px solid #4da8da;
        padding-left: 15px;
    }
    .edu-item, .exp-item {
        margin-bottom: 20px;
        padding-left: 20px;
        position: relative;
    }
    .edu-item::before, .exp-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 6px;
        width: 8px;
        height: 8px;
        background: #4da8da;
        border-radius: 50%;
    }
    .edu-item b, .exp-item b {
        color: #1b263b;
        font-size: 16px;
        display: block;
        margin-bottom: 5px;
        font-weight: 700;
    }
    .edu-item span, .exp-item span {
        display: block;
        color: #4da8da;
        font-size: 14px;
        margin-bottom: 8px;
        font-weight: 500;
    }
    .exp-item p {
        font-size: 14px;
        color: #555;
        line-height: 1.6;
        margin-top: 8px;
    }

    /* Print Styles */
    @media print {
        @page {
            size: A4;
            margin: 0;
        }
        body {
            background: white;
            padding: 0;
            margin: 0;
        }
        .cv-container {
            box-shadow: none;
            max-width: 100%;
            margin: 0;
            min-height: 0;
            page-break-after: avoid;
        }
        .left-side {
            width: 35%;
            padding: 30px 25px;
        }
        .right-side {
            width: 65%;
            padding: 30px 40px;
        }
        .section, .edu-item, .exp-item {
            page-break-inside: avoid;
        }
    }

    /* Mobile Layout */
    @media (max-width: 768px) {
        body {
            padding: 0;
        }
        .cv-container {
            flex-direction: column;
        }
        .left-side, .right-side {
            width: 100%;
        }
        .left-side {
            padding: 30px 25px;
        }
        .right-side {
            padding: 30px 25px;
        }
    }