extebody {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #3a2f2f;
}

.containers {
    width: 80%;
    margin: 30px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.title-section {
    text-align: center;
    margin-bottom: 20px;
}

.title-section h1 {
    font-size: 32px;
    color: #a94442;
}

.title-section p {
    font-size: 16px;
    color: #a94442;
}

.image-section {
    width: 100%;
    position: relative;
    text-align: center;
    margin-bottom: 20px;
}

.image-section img {
    width: 100%;
}

.overlay-text {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
}

.overlay-text h2 {
    font-size: 24px;
    color: #3a2f2f;
}

.social-icons {
    text-align: center;
    margin-top: 20px;
}

.social-icons a {
    margin: 0 10px;
    color: #3a2f2f;
    text-decoration: none;
    font-size: 24px;
}

.social-icons a:hover {
    color: #a94442;
}
.bold-text{
    text-align: center;
}
.product-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 70px;
    margin-top: 20px;
}

.product-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
}

.product-info {
    text-align: center;
    margin-top: 10px;
}

.shop-now {
    background-color: #fff;
    border: 1px solid #a94442;
    color: #a94442;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
}

.shop-now:hover {
    background-color: #a94442;
    color: #fff;
}
.product-info{
    text-align: left;
}
.related-articles {
    max-width: 1200px;
    margin: 0 auto;
}

.related-articles h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.articles-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.article {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    flex: 1;
    max-width: 30%;
}

.article img {
    width: 100%;
    height: auto;
}

.article h3 {
    font-size: 18px;
    margin: 15px;
}

.article .date {
    color: #888;
    font-size: 14px;
    margin: 10px 0;
}

.article p {
    font-size: 16px;
    margin: 10px 15px;
}

@media (max-width: 768px) {
    .container {
        width: 95%;
        padding: 10px;
    }

    .title-section h1 {
        font-size: 24px;
    }

    .overlay-text h2 {
        font-size: 18px;
    }

    .social-icons a {
        font-size: 20px;
    }
    .product-section {
        flex-direction: column;
        align-items: center;
    }

    .product-image img {
        max-width: 100%;
    }
    .articles-container {
        flex-direction: column;
    }

    .article {
        max-width: 100%;
        margin-bottom: 20px;
    }
}
