@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
 
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    list-style: none;
    text-decoration: none;
}

body {
    padding-top: 80px;
    overflow-x: hidden;
}
.blog_container{
    width: 100vw;
}
.blog_heading {
    text-align: center;
    background-color: #B57748;
    color: white;
    padding: 1.5rem 0;
}

.blog_heading h1 {
    font-size: 2.5rem;
    margin: 0;
}

.blog_heading p {
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

.content {
    max-width: 100%;
    padding: 2rem 10rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 2rem;
}

section h2 {
    font-size: 1.75rem;
    color: #B57748;
    margin-bottom: 1rem;
}

.content ul {
    list-style: disc;
    margin-left: 1.5rem;
}
 
.content ul li {
    margin-bottom: 0.5rem;
} 
.contact p {
    margin: 0.5rem 0;
}


@media (max-width: 991px) {
    .content {
        padding: 2rem 1rem;
    }
    section h2 {
        font-size: 1.25rem;
        color: #B57748;
        margin-bottom: 1rem;
    }
    .content ul {
        list-style: disc;
        margin-left: 1rem;
    }
}