body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

header {
    text-align: left;
    margin-bottom: 20px;
}

.header-content {
    display: flex;
    align-items: center;
}

.profile-photo {
    width: 90px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.header-text {
    flex-grow: 1;
}

header h1 {
    margin-bottom: 5px;
}

h2 {
    color: #4aa3df;
    border-bottom: 2px solid #4aa3df;
    padding-bottom: 5px;
}

.education-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.edu-left {
    width: 70%;
}

.edu-right {
    width: 30%;
    text-align: right;
}

.project h3 {
    color: #333;
}

ul {
    padding-left: 20px;
}

.reference {
    margin-bottom: 20px;
}

.reference h3 {
    margin-bottom: 5px;
    color: #333;
}

.reference p {
    margin: 2px 0;
}

.reference a {
    color: #0056b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.reference a:hover {
    color: #003d82;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
    }
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .profile-photo {
        margin-bottom: 10px;
    }
    .education-item {
        flex-direction: column;
    }
    .edu-left, .edu-right {
        width: 100%;
    }
    .edu-right {
        text-align: left;
    }
}
