body {
    font-family: Arial, sans-serif;
    max-width: 1050px;
    margin: auto;
    padding: 40px;
    line-height: 1.7;
    background-color: #f8f9fa;
    color: #222;
}

nav {
    display: flex;
    gap: 22px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

nav a {
    color: #003366;
    font-weight: bold;
}

h1 {
    color: #003366;
    font-size: 48px;
    margin-bottom: 10px;
}

h2 {
    margin-top: 10px;
    color: #00509e;
    font-size: 32px;
}

h3 {
    color: #222;
    margin-top: 25px;
}

.hero {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
}

.profile-image {
    width: 280px;
    border-radius: 18px;
    box-shadow: 0px 4px 14px rgba(0,0,0,0.2);
}

.card {
    background: white;
    padding: 30px;
    border-radius: 14px;
    margin-top: 30px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.08);
}

.project-images, .gallery-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-images img {
    width: 48%;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.15);
}

.gallery-images img {
    width: 31%;
    border-radius: 10px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.15);
}

a {
    color: #00509e;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

ul {
    padding-left: 25px;
}

li {
    margin-bottom: 10px;
}

@media (max-width: 700px) {
    .project-images img, .gallery-images img {
        width: 100%;
    }

    h1 {
        font-size: 38px;
    }
}
