* {
    box-sizing: border-box;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

body {
    background: #f4f7f6;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: #1d4ed8;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section {
    padding: 20px 0;
    border-bottom: 2px solid #ddd;
}

h2 {
    margin-bottom: 20px;
    padding-left: 6px;
    border-left: 6px solid #1d4ed8;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 25px;
}

.team-card {
    background: white;
    padding: 25px 15px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.2s ease-in-out;
}

.team-card:hover {
    transform: scale(105%);
}

.team-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 5px;
    border: 2px solid black;
}

.team-card h3 {
    font-size: 1.2rem;
    margin: 5px;
}

.role {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0;
    margin-bottom: 10px;
}

.linkedin-btn {
    display: inline-block;
    background: #0077b5;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
}

.doc-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.doc-item {
    background: white;
    border: 1px solid #4d1979;
    color: #4d1979;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.doc-item:hover {
    background: #4d1979;
    color: white;
}

.footer {
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    color: #777;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}