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

        body.page-template-cv-page {
            color: #333;
            background: #fff;
        }

        .cv-page h1 {
            font-size: 32px;
            line-height: 32px;
            font-weight: 500;
            margin: 0 0 30px;
        }

        .cv-page h2 {
            color: #333;
            font-size: 24px;
            line-height: 24px;
            font-weight: 400;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            /* border-bottom: 2px solid #e0e0e0; */
        }

        .page-template-cv-page .container {
            max-width: 1200px;
            margin: 40px auto;
            background: white;
            box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
            display: grid;
            grid-template-columns: 1fr;
            min-height: 100vh;
            padding: 0;
        }
        .wrapper {
            display: grid;
            grid-template-columns: 1fr;
        }

        .summary {
            padding: 20px;
            border-radius: 16px;
            background-color: #f9f9f9;
            margin-bottom: 15px;
        }

        .contact-wrapper {
            display: flex;
            gap: 15px;
            /* flex-direction: column; */
            flex-wrap: wrap;
            width: 100%;
        }

        .main-content {
            padding: 30px;
            background: #f2f2f2;
        }

        .sidebar {
            background: #f2f2f2;
            color: #333;
            padding: 30px;
        }

        .tagline {
            font-size: 1.1em;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }


        .sidebar h3 {
            color:#333;
            font-weight: 400;
            margin-top: 20px;
            margin-bottom: 15px;
            padding-bottom: 5px;
            border-bottom: 2px solid #e0e0e0;
        }

        .job {
            margin-bottom: 15px;
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 16px;
        }

        .job-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .job-title {
            font-size: 20px;
            font-weight: 500;
            color: #333;
        }

        .job-date {
            font-size: 14px;
            border: 2px solid #000;
            padding: 0.5rem 1rem;
            border-radius: 0.4rem;
            color: #000;
            font-weight: 500;
        }

        .job .school {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e0e0e0;
        }

        .job ul {
            list-style: none;
            margin-left: 0;
        }

        .job li {
            padding-left: 15px;
            position: relative;
            margin-bottom: 12px;
            color: #555;
        }

        .job li:before {
            content: "";
            position: absolute;
            width: 5px;
            height: 5px;
            border-radius: 5px;
            top: 10px;
            left: 0;
            background-color: #333;
        }

        .education-item {
            margin-bottom: 15px;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 16px;
        }

        .degree {
            font-size: 20px;
            font-weight: 500;
            color: #333;
        }

        .school {
            color: #7f8c8d;
            margin-bottom: 5px;
        }

        .edu-date {
            font-size: 0.9em;
            color: #95a5a6;
        }

        .contact-item {
            flex: 1;
            flex-basis: 48%;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 16px;
        }

        .contact-label {
            font-size: 0.9em;
            opacity: 0.8;
            margin-bottom: 5px;
        }

        .contact-value {
            font-size: 1em;
            word-break: break-word;
        }

        .contact-value a {
            color: #333;
            text-decoration: none;
            border-bottom: 1px solid #e0e0e0;
            transition: border-color 0.3s;
        }

        .contact-value a:hover {
            border-color: white;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr 1fr;
            gap: 15px;
        }

        .skill-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 16px;
        }

        .skill-name {
            font-size: 0.95em;
        }

        .skill-dots {
            display: flex;
            gap: 4px;
        }

        .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #333;
        }

        .download-btn {
        text-decoration: none;
        color: #000;
        border: 2px solid #000;
        padding: 1.5rem 3rem;
        border-radius: 0.4rem;
        position: relative;
        font-weight: 600;
        }
        .download-btn::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -2;
        }
        .download-btn::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0%;
        height: 100%;
        background-color: #000;
        transition: all 0.3s;
        z-index: -1;
        }
        .download-btn:hover {
        color: #fff;
        }
        .download-btn:hover::before {
        width: 100%;
        }

        @media (max-width: 968px) {
            .container {
                background: #fff;
                grid-template-columns: 1fr;
                margin: 0;
            }

            .main-content {
                background: #fff;
                padding: 40px 30px;
            }

            .sidebar {
                background: #fff;
                padding: 40px 30px;
            }

            h1 {
                font-size: 2.5em;
            }

            .download-btn {
                top: 15px;
                right: 15px;
                padding: 12px 20px;
                font-size: 0.9em;
            }
        }

.generating-pdf .main-content {
    background-color: #fff;
}