
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    margin:0; 
    background:#f9f9f9; 
    color:#333; 
}

header { 
    text-align:center; 
    background:linear-gradient(135deg,#4CAF50,#81C784); 
    color:white; 
    padding:60px 20px; 
}

header img { 
    border-radius:50%; 
    width:160px; 
    height:160px; 
    object-fit:cover; 
    border:4px solid white; 
}

section { 
    max-width:1000px; 
    margin:40px auto; 
    padding:20px; 
}

h2 { 
    color:#4CAF50; 
    margin-bottom:20px; 
    border-bottom:3px solid #4CAF50; 
    padding-bottom:5px; 
}

.card { 
    background:white; 
    padding:20px; 
    margin-bottom:20px; 
    border-radius:12px; 
    box-shadow:0 4px 12px rgba(0,0,0,0.1); 
}

.card:hover { 
    transform:translateY(-5px); 
    transition:0.3s; 
}

table { 
    width:100%; 
    border-collapse:collapse; 
}

th, td { 
    border:1px solid #ddd; 
    padding:12px; 
}

th { 
    background-color:#4CAF50; 
    color:white; 
}

footer { 
    text-align:center; 
    padding:20px; 
    background-color:#e0e0e0; 
}

a { 
    color:#1b5e20; 
    text-decoration:none; 
    font-weight:bold; 
}

a:hover { 
    text-decoration:underline; 
}

/* Experience section flex layout */
.exp-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.exp-role {
    font-weight: bold;
}

.exp-dates {
    font-style: italic;
    color: #555;
}
