body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #333;
}
header {
    background: linear-gradient(135deg, #002147, #00ADEF);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}
nav {
    display: flex;
    justify-content: center;
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}
nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #002147;
    font-weight: 600;
}
nav a:hover {
    color: #00ADEF;
}
.hero {
    background-image: url('https://images.unsplash.com/photo-1570129477492-45c003edd2be?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}
.hero div {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 12px;
}
.content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}
.card {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.card:hover {
    transform: translateY(-5px);
}
footer {
    text-align: center;
    padding: 2rem 1rem;
    background: #002147;
    color: white;
    margin-top: 4rem;
}
h1, h2 {
    margin-bottom: 1rem;
}
.contact-info a {
    color: #00ADEF;
    text-decoration: none;
}
.contact-info a:hover {
    text-decoration: underline;
}
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.gallery img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.gallery img:hover {
    transform: scale(1.05);
}