body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}
.top-bar {
    background: #eee;
    color: #333;
    text-align: right;
    padding: 0.5rem 15px;
    font-size: 0.9rem;
}
header {
    background: #fff;
    color: #333;
    width: 100%;
    border-bottom: 2px solid #ccc;
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 15px;
}
header img {
    max-width: 150px;
}
nav {
    display: flex;
    gap: 20px;
}
nav a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}
nav a:hover {
    background-color: #ddd;
}
.carousel {
    width: 100%;
    max-width: 1200px;
    margin: 0.5rem auto;
    overflow: hidden;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}
.carousel img {
    width: 100%;
    flex-shrink: 0;
    height: 350px;
    object-fit: cover;
}
.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 15px;
}

.info-section {
    background: #fff;
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}
.info-section h2 {
    margin-top: 0;
    color: #333;
}
.info-section p {
    margin: 1rem 0;
}
.info-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}
.info-column {
    flex: 1 1 calc(50% - 2rem);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.info-column img {
    max-width: 200px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.map-container {
    margin: 0;
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
}
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}
footer p {
    margin: 0;
}
.social-icons {
    display: flex;
    gap: 1rem;
    margin-right: 35px;
}
.social-icons a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}
.social-icons a:hover {
    color: #ddd;
}
.info-images {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
}
.info-images img {
    flex: 1;
    height: 300px;
    border-radius: 5px;
    object-fit: cover;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.product {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}
.product img {
    max-width: 300px;
    margin-right: 20px;
}
.product-content {
    max-width: 600px;
}