/* CV Page Specific Styles */

.cv-container {
    max-width: 800px;
}

.cv-content {
    animation: fadeInUp 0.6s ease-out;
    padding: 2rem 0 4rem;
}

.cv-download-section {
    text-align: center;
    margin: 2rem 0;
}

.cv-download-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 3px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cv-download-btn:hover {
    background: var(--primary-dark);
}

.cv-image {
    margin-top: 2rem;
    text-align: center;
}

.cv-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cv-download-btn {
        font-size: 0.95rem;
        padding: 0.65rem 1.75rem;
    }
}
