/* ==============================
   ROOT & RESET
============================== */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --secondary-dark: #059669;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border-color: #e5e7eb;
    --border-light: #f1f5f9;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow: 0 10px 25px rgba(0,0,0,0.08);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --font-main: 'Poppins', 'Inter', Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ==============================
   TYPOGRAPHY
============================== */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
}

/* ==============================
   LAYOUT & CONTAINER
============================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.builder-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

/* ==============================
   NAVIGATION
============================== */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo .dot {
    color: var(--primary-dark);
}

.logo i {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: var(--bg-light);
}

/* ==============================
   HERO SECTION
============================== */
.hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* ==============================
   BUTTONS
============================== */
.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    padding: 12px 24px;
    border-radius: var(--radius);
    border: 2px solid var(--border-color);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.btn-secondary.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-success {
    background: var(--secondary-color);
    color: white;
    padding: 12px 28px;
    border-radius: var(--radius);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-success:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
}

/* ==============================
   FORM STYLES
============================== */
form {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    width: 100%;
}

fieldset {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 30px;
    background: var(--bg-light);
}

fieldset legend {
    font-weight: 600;
    padding: 0 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

fieldset legend h3 {
    margin: 0;
    color: inherit;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Experience & Education Entries */
.experience-entry,
.education-entry {
    background: var(--bg-white);
    padding: 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    margin-bottom: 15px;
    position: relative;
}

.experience-entry:last-child,
.education-entry:last-child {
    margin-bottom: 0;
}

.remove-entry {
    margin-top: 10px;
    padding: 6px 12px;
    font-size: 0.85rem;
}

/* Skills Tags */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    min-height: 40px;
    padding: 5px;
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
}

.skill-tag {
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.skill-tag .remove-tag {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1rem;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin-left: 5px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.skill-tag .remove-tag:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.form-actions button {
    flex: 1;
    min-width: 120px;
}

/* ==============================
   PROFILE PICTURE UPLOAD
============================== */
.image-upload-container {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    align-items: start;
}

.image-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid var(--border-color);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.image-preview-default {
    text-align: center;
    color: var(--text-muted);
}

.image-preview-default i {
    font-size: 4rem;
    color: var(--border-color);
    margin-bottom: 10px;
}

.image-preview-default p {
    font-size: 0.8rem;
    margin: 0;
}

#imagePreviewImg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.upload-options {
    flex: 1;
}

.upload-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.upload-buttons button {
    flex: 1;
    min-width: 140px;
}

.image-guidelines {
    background: var(--bg-light);
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.image-guidelines p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.image-guidelines i {
    color: var(--primary-color);
    width: 16px;
}

/* ==============================
   CV TEMPLATE STYLES
============================== */
.cv-template {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    min-height: 800px;
    position: relative;
    width: 100%;
}

#cvDocument {
    width: 100%;
    height: auto;
}

.cv-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
    margin-bottom: 25px;
    gap: 20px;
}

.cv-header-left {
    display: flex;
    gap: 25px;
    align-items: center;
    flex: 1;
}

.cv-profile-image-container {
    position: relative;
    flex-shrink: 0;
}

.cv-profile-image {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.cv-profile-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 3px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 2.5rem;
}

.cv-header-info {
    flex: 1;
}

.cv-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.cv-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.cv-contact {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cv-contact p {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cv-contact i {
    width: 16px;
    color: var(--primary-color);
}

.cv-header-right {
    flex: 1;
    max-width: 50%;
}

.cv-summary {
    background: var(--bg-light);
    padding: 15px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
    color: var(--text-dark);
    line-height: 1.6;
}

/* CV Body Sections */
.cv-section {
    margin-bottom: 25px;
    page-break-inside: avoid;
}

.cv-section-title {
    color: var(--text-dark);
    padding-bottom: 5px;
    border-bottom: 2px solid var(--border-light);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cv-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cv-skill-tag {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}

/* Experience & Education in CV */
.cv-experience-item,
.cv-education-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.cv-experience-item:last-child,
.cv-education-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cv-experience-title,
.cv-education-degree {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.cv-experience-company,
.cv-education-institution {
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.cv-experience-duration,
.cv-education-year {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
}

/* ==============================
   MODAL & CROPPER STYLES
============================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    margin: 0;
    color: var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.modal-body {
    padding: 10px 0;
}

/* Cropper Styles */
.crop-container {
    max-width: 500px;
    margin: 0 auto;
}

#cropperContainer {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--bg-light);
}

#imageToCrop {
    max-width: 100%;
    max-height: 300px;
    display: block;
    margin: 0 auto;
}

.crop-controls {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.crop-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.crop-actions button {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.crop-submit {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* ==============================
   FEATURES SECTION
============================== */
.features-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}


/* ==============================
   HOW-TO SECTION
============================== */
.how-to-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 30px;
    background: var(--bg-white);
    border-radius: var(--radius);
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

/* ==============================
   FOOTER STYLES
============================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-brand .logo .dot {
    color: var(--primary-color);
}

.footer-tagline {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-copyright {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-column ul li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-column ul li a i {
    width: 20px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-notes {
    color: var(--text-light);
    font-size: 0.9rem;
    flex: 1;
}

.footer-notes a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-notes a:hover {
    text-decoration: underline;
}

.footer-ad-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--primary-color);
}

.footer-ad-info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.footer-ad-info i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* ==============================
   LOADING SPINNER
============================== */
.spinner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner-content {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.spinner-content i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.spinner-content p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

/* ==============================
   UTILITY CLASSES
============================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

/* ==============================
   RESPONSIVE DESIGN
============================== */
@media (max-width: 1024px) {
    .builder-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cv-header {
        flex-direction: column;
        gap: 25px;
    }
    
    .cv-header-right {
        max-width: 100%;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button {
        width: 100%;
    }
    
    .image-upload-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .image-preview {
        margin: 0 auto;
    }
    
    .upload-buttons {
        justify-content: center;
    }
    
    .cv-header-left {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .features-grid,
    .steps {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    form,
    .cv-template,
    .feature-card,
    .step {
        padding: 20px;
    }
    
    .modal-content {
        padding: 20px;
        margin: 10px;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-column h4 {
        font-size: 1rem;
    }
}

/* ==============================
   PRINT STYLES
============================== */
@media print {
    .navbar,
    .hero,
    .features-section,
    .how-to-section,
    .footer,
    .form-actions,
    .preview-actions,
    .mobile-menu-btn,
    form,
    .builder-wrapper > form,
    .modal-overlay,
    .spinner {
        display: none !important;
    }
    
    .builder-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0;
    }
    
    .cv-template {
        box-shadow: none;
        border: none;
        padding: 0;
        min-height: auto;
    }
    
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .cv-header {
        flex-direction: row;
        padding: 20pt 0;
        margin-bottom: 20pt;
    }
    
    .cv-name {
        font-size: 18pt;
    }
    
    .cv-title {
        font-size: 14pt;
    }
    
    .cv-section {
        margin-bottom: 15pt;
    }
    
    .cv-section-title {
        font-size: 12pt;
        margin-bottom: 10pt;
    }
    
    .cv-profile-image {
        width: 80pt;
        height: 80pt;
    }
    
    .cv-profile-placeholder {
        width: 80pt;
        height: 80pt;
        font-size: 2rem;
    }
}
/* Add this to your CSS file at the end */
@media print {
    .cv-template {
        all: initial !important;
        display: block !important;
        width: 210mm !important;
        min-height: 297mm !important;
        padding: 20mm !important;
        margin: 0 !important;
        box-shadow: none !important;
        border: none !important;
        background: white !important;
        color: black !important;
        font-family: 'Arial', 'Helvetica', sans-serif !important;
        font-size: 12pt !important;
    }
    
    .cv-template * {
        box-shadow: none !important;
        text-shadow: none !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        border-radius: 0 !important;
    }
    
    .cv-profile-image {
        width: 80px !important;
        height: 80px !important;
    }
    
    .cv-profile-placeholder {
        width: 80px !important;
        height: 80px !important;
        font-size: 2rem !important;
    }
}