/* Reset some default styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Container styles */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f8f8;
    padding: 20px;
}

/* Shop information styles */
.shop-info {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

/* Title style */
.shop-info h1 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

/* Text styles */
.shop-info p {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
}

/* Link styles */
.map-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    color: #fff;
    background-color: #007BFF;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.map-link:hover {
    background-color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .shop-info {
        padding: 15px;
    }

    .shop-info h1 {
        font-size: 20px;
    }

    .shop-info p {
        font-size: 14px;
    }

    .map-link {
        font-size: 14px;
        padding: 8px 15px;
    }
}
