* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
/* Navigation */
nav {
    background: #333;
    color: white;
    padding: 1rem 0;
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-brand {
    font-size: 1.2rem;
    font-weight: bold;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-menu a {
    color: white;
    text-decoration: none;
}
.nav-menu a:hover,
.nav-menu a.active {
    color: #ddd;
}
/* Banner */
.banner {
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Main content layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}
/* Profile photo */
.profile-section {
    flex-shrink: 0;
}

.profile-photo {
    width: 250px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}
/* Main text content */
.main-content {
    flex: 1;
}
.main-content p {
    margin-bottom: .5rem;
    text-align: justify;
}
.main-content h1 {
    margin-bottom: 0.5rem;
}
.subtitle {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.3rem;
}
.main-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}
/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 3rem;
}
/* Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
    
    .profile-photo {
        width: 225px;
        height: 350px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
}

.education-section {
    margin-top: 1rem;
    max-width: 100%;
}

.education-section h3 {
    margin-bottom: .7rem;
    font-size: 1.3rem;
}

.education-section ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.education-section li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.experience-section {
    margin-top: 1rem;
    max-width: 100%;
}

.experience-section h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.experience-section ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.experience-section li {
    margin-bottom: .7rem;
    line-height: 1.6;
}

.header-with-links {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.header-with-links h1 {
    margin-bottom: 0;
}

.header-social-links {
    display: flex;
    gap: 0.5rem;
}

.header-social-links a {
    color: #333;
    font-size: 1.5rem;  /* Changed from 2rem */
    transition: color 0.3s;
}

.header-social-links a:hover {
    color: #0077b5; /* LinkedIn blue */
}

.wordcloud-banner {
    height: auto;
    overflow: hidden;
}
.wordcloud-banner img {
    width: 50%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.project p {
    margin-bottom: 1rem;
}
.project l {
    display: block;
    padding-left: 1.5em;
    margin-bottom: 0.6em;
}

