* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
}

header {
    background: #367588;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

h1 {
    font-size: 2.5em;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background: #ff6f61;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.contact-info {
    padding: 40px 20px;
    text-align: center;
    background: #fff;
}

.contact-info h2 {
    margin-bottom: 20px;
}

.contact-info ul {
    list-style-type: none;
}

.contact-info li {
    margin: 10px 0;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    padding: 10px;
    background: #25d366;
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.images {
    padding: 40px 20px;
    background: #f5f5f5;
    text-align: center;
}

.images h2 {
    margin-bottom: 20px;
}

.image-gallery {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.image-gallery img {
    border-radius: 10px;
    max-width: 300px;
    height: auto;
}

footer {
    text-align: center;
    padding: 15px;
    background: #367588;
    color: white;
}