/* cv.css */

.cv-download-card {
    display: flex;
    align-items: center;
    background: #fdfdfd;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.cv-icon {
    margin-right: 25px;
    color: var(--primary-color);
    background: #fff5f6;
    padding: 15px;
    border-radius: 12px;
}

.cv-text h3 {
    margin: 0 0 5px 0;
}

.cv-text p {
    margin: 0 0 15px 0;
    color: #666;
}

.download-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: bold;
    transition: opacity 0.2s;
}

.download-btn:hover {
    opacity: 0.9;
}

.summary-list {
    list-style: none;
    padding: 0;
}

.summary-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    border-left: 2px solid #eee;
}