
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
    color: #333;
}

.hero {
    background: url('images/photo1.jpg') no-repeat center center/cover;
    height: 100vh;
    position: relative;
}

.hero .overlay {
    background: rgba(0, 51, 102, 0.6);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin: 0;
}

.hero p {
    font-size: 1.5rem;
}

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

h2 {
    color: #004080;
}

.services ul {
    list-style: none;
    padding: 0;
}

.services li {
    background: #e0f0ff;
    margin: 10px 0;
    padding: 10px;
    border-left: 5px solid #0077cc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

.whatsapp-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
