/* ===== Global Styles ===== */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
}

/* ===== Headers ===== */
header h1 {
    font-size: 2em;
    margin-bottom: 5px;
    color: #111;
}

header p {
    font-size: 1.1em;
    color: #555;
}

/* ===== Section Titles ===== */
section h2 {
    font-size: 1.5em;
    color: #222;
    border-bottom: 2px solid #ccc;
    padding-bottom: 5px;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* ===== Lists ===== */
ul {
    margin: 10px 0 20px 20px;
    padding-left: 0;
}

ul li {
    margin-bottom: 10px;
}

/* ===== Education, Skills, Languages, Projects Headers ===== */
section header h1 {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 5px;
    color: #111;
}

section header p {
    margin: 2px 0;
    font-size: 1em;
    color: #444;
}

/* ===== Projects Section List ===== */
section header ul li {
    margin-bottom: 8px;
}


/* ===== Responsive Design ===== */
@media (max-width: 600px) {
    body {
        padding: 10px;
    }
    header h1 {
        font-size: 1.7em;
    }
    section h2 {
        font-size: 1.3em;
    }
}