body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.feature-block h3 {
    margin-bottom: 10px;
    font-size: 20px;
    text-align: left;
}

.container {
    width: 90%;
    margin: 20px auto;
}


#product1 {
    margin-top: 50px !important;


}

#product1 h2 {
    color: #fff !important;
}

.blog-card {

    background: #fff;
    border: 1px solid #cce7d0;
    border-radius: 25px;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease-in-out;
}

.blog-card:hover {
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

ul {

    list-style-type: none;
    padding: 0;
    text-align: left;
}


.blog-header {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.info-section {
    border: 1px solid #0000;
    /* Border color as specified */
    border-radius: 25px;
    /* Rounded corners */
    /* padding: 10px; */
    margin-bottom: 10px;
    background-color: #0000;
    display: flex;
    /* background-color: red; */
    flex-direction: column;
    flex-wrap: wrap;
    /* Optional: a subtle background for separation */
}

.info-section p {
    text-align: justify;
    margin-top: 30px;
    /* makes paragraph alignment neat */
    margin-bottom: 0;
}

.info-section h4 {
    /* position: absolute; */
    /* background-color: blue; */
    font-size: 22px;
    font-weight: 700;
    /* margin-top: 20px; */
    margin-bottom: 15px;
    text-align: start;
    color: #222;
    letter-spacing: 0.5px;
}


.blog-header img {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-right: 20px;
    transition: all 0.3s ease, transform 0.5s ease-in-out;
    position: relative;
    z-index: 1;
}

.blog-header img.expand {
    width: 150px;
    height: 150px;
    transform: translate(-10px, 10px);
}

.blog-header h3 {
    text-align: left;
    margin: 0;
    font-size: 1.5em;
    line-height: 1.2;
    color: #088178;
}

.arrow {
    margin-left: auto;
    font-size: 1.5em;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.arrow.rotate {
    transform: rotate(90deg);
}

.blog-content {
    max-height: 0;
    overflow: auto;
    padding: 0 20px;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

.blog-content.expanded {
    max-height: 500px;
    opacity: 1;
}

.blog-content p {
    font-size: 1em;
    line-height: 1.6;
    margin: 20px 0;
}

.footer {
    width: 100vh !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-header img {
        width: 80px;
        height: 80px;
    }

    .blog-header img.expand {
        width: 120px;
        height: 120px;
    }

    .blog-header h3 {
        font-size: 1.2em;
    }

    footer a,
    footer h4,
    .copyright p {
        font-size: 10px;


    }
}