* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Arial", sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

/* ====cv-container==== */
.cv-container {
    max-width: 800px;
    background: #fff;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

/* ====Header-section==== */
.cv-header {
    text-align: center;
    margin-bottom: 20px;

}

.cv-name {
    font-size: 28px;
    font-weight: bold;
    color: #222;
}

.cv-title {
    font-size: 20px;
    color: #666;
}

/* ===== Contact Section ===== */
.cv-contact {
    text-align: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.cv-contact a {
    color: #0073e6;
    text-decoration: none;
}

.cv-contact a:hover {
    text-decoration: underline;
}

/* ===== Divider Line ===== */
.divider {
    border: none;
    height: 2px;
    background: #0073e6;
    margin: 20px 0;
}

/* ===== Sections (Skills, Education, Experience, etc.) ===== */
.cv-section {
    margin-bottom: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #222;
}

/* ===== Skills List ===== */
.cv-skills {
    background: #eef6ff;
    padding: 10px;
    border-left: 4px solid #0073e6;
    font-size: 14px;
    border-radius: 5px;
    overflow: scroll;
}

/* ===== Education & Experience ===== */
.cv-education,
.cv-experience {
    font-size: 14px;
    margin: 10px;
    
}

.cv-experience strong {
    color: #0073e6;
}

.experience-list {
    padding-left: 20px;
    margin-top: 5px;
}

.experience-list li {
    margin-bottom: 5px;
}

/* ===== Social Media Links ===== */
.cv-links {
    text-align: center;
}

.cv-links a {
    text-decoration: none;
    color: #0073e6;
    font-weight: bold;
    margin: 0 10px;
}

.cv-links a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .cv-container {
        padding: 20px;
    }

    .cv-name {
        font-size: 24px;
    }

    .cv-title {
        font-size: 18px;
    }

    .cv-contact,
    .cv-links {
        font-size: 12px;
    }

    .section-title {
        font-size: 16px;
    }
}