* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Roboto", sans-serif;
    color: #333;
    height: 100vh;
}
.banner-terms {
    background-image: url('../img/terms-1.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
    position: relative;
    padding: 80px 0px;
}
.banner-terms::before{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    opacity: 0.4;
    background-color: #a55757;
    z-index: -1;
}
.heading-terms-3{
    font-size: 52px;
    font-weight: 800;
    color: #fff;
}
.terms-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.terms-header {
    background-color: #8b3e11;
    color: white;
    padding: 1.5rem;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.terms-content {
    padding: 1.5rem;
    overflow-y: auto;
    flex-grow: 1;
}

.terms-3-listing li{
    margin-top: 10px;
    font-size: 17px;
}
.terms-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Scrollbar styling */
.terms-content::-webkit-scrollbar {
    width: 6px;
}

.terms-content::-webkit-scrollbar-thumb {
    background-color: #8b3e11;
    border-radius: 3px;
}

@media (max-width: 600px) {
    .terms-container {
        padding: 0;
    }
}