.cv-container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
}

/* HEADER */

.cv-header {
    text-align: center;
    margin-bottom: 30px;
}

    .cv-header h1 {
        font-size: 36px;
        font-weight: bold;
    }

.contact-row {
    margin-top: 10px;
    color: #666;
}

/* SECTIONS */

.cv-section {
    margin-bottom: 35px;
}

    .cv-section h2 {
        border-bottom: 3px solid #0d6efd;
        padding-bottom: 5px;
        margin-bottom: 15px;
    }

/* SKILLS */

.skills-container {
    display: flex;
    gap: 40px;
}

.skills-box {
    flex: 1;
}

/* PROJECT CARDS */

.project-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 8px;
    background: #fafafa;
}

    .project-card h4 {
        margin-bottom: 5px;
    }

.tech {
    color: #666;
}

/* MOBILE */

@media (max-width: 700px) {

    .skills-container {
        flex-direction: column;
    }
}
