body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}
h1 {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
}
p {
    text-align: center;
    margin: 20px 0;
}
.categories {
    display: flex;
    justify-content: space-around;
    margin: 20px 0;
}
.category {
    text-align: center;
}
.category img {
    width: 150px;
    height: 150px;
    object-fit: contain;
}
.category h2 a {
    text-decoration: none;
    color: #4CAF50;
}
.banner {
    width: 100%;
    max-height: 300px; /* Set a maximum height to maintain aspect ratio */
    overflow: hidden;
    position: relative;
}
.banner img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.banner img.active {
    opacity: 1;
}
footer {
    background-color: #f4f4f4;
    padding: 40px 0;
    font-size: 14px;
    width: 100%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    padding: 0 20px;
}

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #333;
    text-decoration: none;
}

.footer-column a:hover {
    color: #2c5282;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: #666;
}
.product-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    gap: 40px;
}

.left-column {
    flex: 1;
    max-width: 600px;
}

.right-column {
    flex: 1;
    max-width: 400px;
}

/* Product images */
.product-image {
    width: 100%;
    margin-bottom: 30px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 4px;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 500px;
}

.product-description {
    margin-top: 20px;
}

.formatted-content {
    line-height: 1.6;
}

.product-price {
    font-size: 24px;
    font-weight: bold;
    margin: 20px 0;
}

.plumberscrib-link img {
    max-width: 200px;
    height: auto;
    margin-top: 10px;
} 