/* style.css */

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
}

header {
    background: #B89D9A;
    padding: 20px;
    text-align: center;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 20px;
}

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

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

.cta {
    text-align: center;
    margin: 40px 0;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1em;
}

.btn:hover {
    background: #0056b3;
}

footer {
    background: #B89D9A;
    text-align: center;
    padding: 10px;
}