* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container_blogs {
    display: grid;
    grid-template-columns: 1fr 380px;
    max-width: 1200px;
    width: 100%;
    gap: 20px;
    margin: 20px auto;
    padding: 20px;
}

.left-container_blog>img {
    width: 100%;
    max-width: 750px;
    height: auto;
    border-radius: 8px;
    display: block;
}

.img-title {
    text-align: center;
    margin: 8px 0;
    font-size: 14px;
    color: #333;
}

#para-text {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-top: 10px;
}

/* Right sidebar */
.sidebar_blogs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search {
    width: 100%;
    max-width: 340px;
    height: 140px;
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.search>h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-weight: 600;
    color: #0a0c31;
}

.search>input {
    width: calc(100% - 40px);
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.search>button {
    padding: 10px;
    border: none;
    background: #fff;
    color: white;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
}

.recent {
    width: 100%;
    max-width: 358px;
    min-height: 349px;
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);

}

.recent h3 {
    margin-bottom: 40px;
    font-size: 18px;
    font-family: Plus Jakarta Sans, sans-serif;
    font-weight: 600;
    color: #0a0c31;
    border-bottom: 1px solid #ddd;
}

.search h3::after,
.recent h3::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ddd;
    margin-top: 8px;
}

.recent-blog {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
    align-items: center;
}

.recent-blog img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
}

.recent-blog-heading {
    font-size: 14px;
    color: #0a0c31;
    font-family: Plus Jakarta Sans, sans-serif;
    font-weight: 500;
}

.hr-line-blog {
    width: 100%;
    color: #000;
    font-weight: 500;
    height: 10px;
}

#date-recent-blog {
    color: gray;
    font-size: 12px;
    padding-top: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
    .container_blogs {
        grid-template-columns: 1fr;
    }

    .sidebar_blogs {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .search,
    .recent {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .recent-blog {
        flex-direction: column;
        align-items: flex-start;
    }

    .recent-blog img {
        width: 100%;
        height: auto;
    }
}

  .section-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }
        .quote-box {
            border-left: 2px solid #5b3ff1;
            padding-left: 15px;
            height: 120px;
            margin-top: -50px;
            display: flex;
            align-items: center;
        }
        .quote-box p {
            font-size: 23px;
            font-family: Roboto, sans-serif;
            font-weight: 400;
            color: #000;
            line-height: 1.6;
            quotes: "“" "”" "‘" "’";
        }
        .quote-box p::before {
            content: open-quote;
            font-size: 30px;
            color: #999;
            margin-right: 5px;
        }
        .quote-box p::after {
            content: close-quote;
            font-size: 30px;
            color: #999;
            margin-left: 5px;
        }
        #heading-text {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
            margin-top: 25px;
            font-family: Roboto, sans-serif;
            color: #000;
        }
        #para-text {
            width: 100%;
            color: black;
            text-align: justify;
            font-family: Roboto, sans-serif;
            font-size: 16px;
        }

        .numbered {
            margin-left: 20px;
        }

        @media (max-width: 768px) {
            .quote-box p {
                font-size: 18px;
                 font-family: Roboto, sans-serif;
            }
            #heading-text {
                font-size: 20px;
                 font-family: Roboto, sans-serif;
            }

            #para-text {
                font-size: 15px;
                 font-family: Roboto, sans-serif;
            }
        }

        @media (max-width: 480px) {
            .section-container {
                padding: 15px;
            }

            .quote-box p {
                font-size: 16px;
                 font-family: Roboto, sans-serif;
            }

            #heading-text {
                font-size: 18px;
                 font-family: Roboto, sans-serif;
            }
        }

         #image_title {
            text-align: center;
            font-size: 18px;
            font-family: Roboto, sans-serif;
            color: black;
            font-weight: 400;
            margin-top: 6px;
        }

        .blog-inner-image>img {
            width: 1140px;
            height: 500px;
            object-fit: cover;
            display: block;
            margin: 5px auto;
            border-radius: 8px;
        }