<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.hero {
    background: url('img/salon.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
}

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

.button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background-color: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.slogan {
    background-color: #f9f9f9;
    text-align: center;
    padding: 2rem;
}

.services {
    padding: 3rem 2rem;
    background-color: #ecf0f1;
    text-align: center;
}

.service-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 2rem;
}

.service {
    background: white;
    padding: 1rem;
    border-radius: 10px;
    max-width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.service img {
    width: 100%;
    border-radius: 10px;
}

.contact {
    background: #bdc3c7;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 500px;
    margin-bottom: 2rem;
}

.contact input, .contact textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.contact button {
    padding: 0.8rem;
    background-color: #2c3e50;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

@media screen and (max-width: 768px) {
    .service-columns {
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.opinie {
    background-color: #fdf2f2;
    padding: 3rem 2rem;
    text-align: center;
}

.opinie-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.opinia {
    max-width: 300px;
    font-style: italic;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.zalety {
    background-color: #fff;
    text-align: center;
    padding: 3rem 2rem;
}

.zalety-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.zaleta {
    font-size: 1.2rem;
    background: #ecf0f1;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 250px;
}

.mapa {
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    text-align: center;
}

.mapa-iframe {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 600px) {
    .mapa-iframe iframe {
        height: 250px;
    }
}
</pre></body></html>