/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #f4f7fa;
    color: #333;
}

h1,
h3 {
    font-family: 'Merriweather', serif;
    color: #2c3e50;
    font-weight: 700;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.page-header {
    background-color: #2c3e50;
    color: white;
    padding: 40px 20px;
    /* text-align: center; */
    border-radius: 8px 8px 0 0;
    margin-top: 90px !important;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;

}

.bg {
    border-radius: 15px;
    width: 100%;
    height: 43vh;
    background-image: url("/image/term&condition.jpeg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.page-header p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.terms-section {
    background-color: white;
    padding: 40px 20px;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

}

.terms-article {
    margin-bottom: 30px;
}

.terms-article p {
    margin-left: 13px;
}

.para-img {
    display: flex;
}

.para-img p {
    margin-left: 13px;
}

.para-img img {
    width: 17px;
    height: 17px;
    margin-top: 8px;
    color: blue;
}

.terms-article h3 {
    font-size: 1.75rem;
    margin-bottom: 15px;
    color: #1abc9c;
}

.terms-article p {
    font-size: 1rem;
    line-height: 1.8;
    color: #7f8c8d;
    margin-bottom: 20px;
}

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    text-align: center;
    margin-top: 50px;
    font-size: 0.875rem;
}

.footer p {
    margin: 0;
    margin-left: 10px !important
}

.flex-col {
    display: flex;
    flex-direction: column;
}

ul {
    margin-top: -15px;
    padding: 0px 0px 10px 50px;
}

li {
    padding: 10px 0px 0px 0px;
    color: #7f8c8d;
    font-weight: normal;
}

strong {
    color: #525252 !important;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .terms-article h3 {
        font-size: 1.5rem;
    }

    .terms-article p {
        font-size: 0.9rem;
    }
}