body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    width: 90%;
    text-align: center;
}

header {
    margin-bottom: 30px;
}

.logo {
    max-width: 250px; /* Dostosuj szerokość logo, jeśli potrzebujesz */
    height: auto;
    margin-bottom: 10px;
}

header p {
    color: #7f8c8d;
    font-size: 1.1em;
}

section {
    margin-bottom: 25px;
    padding: 20px;
    border-top: 1px solid #eee;
}

section h2 {
    color: #34495e;
    font-size: 1.8em;
    margin-bottom: 15px;
}

section p {
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Style dla sekcji sklepów */
.stores {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    margin-top: 30px;
}

.store-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.store-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.store-item h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.4em;
}

.store-item p {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 15px;
}

.map-link {
    display: inline-block;
    background-color: #3b5998; /* Kolor dla linku do mapy */
    color: #fff;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.map-link:hover {
    background-color: #218838;
}


.facebook-button {
    display: inline-block;
    background-color: #3b5998; /* Kolor Facebooka */
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.facebook-button:hover {
    background-color: #2d4373;
}

footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #7f8c8d;
    font-size: 0.9em;
}

/* Responsywność */
@media (max-width: 600px) {
    .logo {
        max-width: 200px;
    }

    section h2 {
        font-size: 1.5em;
    }

    .facebook-button, .map-link {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}