
body {
    font-family: Arial, sans-serif;
    background: #f4f1ec;
    color: #333;
    margin: 0;
    padding: 0;
}

header {
    text-align: center;
    padding: 2rem;
    background: #3e3a36;
    color: white;
}

.logo {
    max-width: 200px;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #d4af37;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}

.before-after, .gallery, .process {
    padding: 2rem;
}

.before-after .slider {
    display: flex;
    gap: 1rem;
}

.before-after img, .gallery-grid img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
}

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

footer {
    background: #3e3a36;
    color: white;
    text-align: center;
    padding: 1rem;
}
