body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f6f9fc;
    color: #333;
}

header {
    background: #004aad;
    color: white;
    padding: 30px 0;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.profile-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
}

.subtitle {
    font-size: 18px;
    opacity: 0.9;
}

section {
    padding: 40px 0;
}

h2 {
    color: #004aad;
    margin-bottom: 20px;
}

.service-list {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.service-card img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 18px;
    line-height: 1.6;
}

footer {
    background: #002a5c;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
}