/* CSS Reset và Cài đặt chung */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #f3f4f6; /* Màu nền xám nhạt */
    color: #1f2937; /* Màu chữ tối */
}
.container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
}
header h1 {
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 10px;
}
header p {
    font-size: 1.1rem;
    color: #4b5563;
}

/* Các khối thông tin (Sections) */
section {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}
h2 {
    font-size: 1.5rem;
    color: #2563eb; /* Màu xanh dương làm điểm nhấn */
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

/* Styling cho từng mục */
.project-title, .edu-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.meta-info {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}
li {
    margin-bottom: 8px;
}

a {
    color: #2563eb;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Kỹ năng */
.skill-item {
    margin-bottom: 10px;
}
.skill-item strong {
    color: #374151;
    display: inline-block;
    width: 100%;
    margin-bottom: 4px;
}

/* Responsive cho điện thoại */
@media (max-width: 600px) {
    .container {
        margin: 20px auto;
    }
    .meta-info {
        flex-direction: column;
        align-items: flex-start;
    }
}