body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
:root{
    --dark-purple:#31178f;
    --soft-purple:#7226b0;
    --back-color-main:#ffffff;
    --body-back-color:rgb(248, 246, 254);
    --main-text:black;
    --light-color:white;
    --secondary-text:#777;
}
.terms-section {
    padding: 20px;
    padding-top: 100px;
    background-color: var(--body-back-color);
}

.terms-content {
    max-width: 1200px;
    margin: 0 auto;
}

.terms-content h1 {
    color: var(--dark-purple);
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    margin-bottom: 20px;
}

.terms-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.terms-text {
    flex: 1;
    min-width: 300px;
}

.terms-text h2 {
    color: var(--dark-purple);
    font-size: 20px;
    margin-bottom: 10px;
}

.terms-text ul {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.terms-text ul li {
    margin-bottom: 10px;
}

.terms-images {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 10px;
}

.terms-images img {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

/* Responsive*/
@media (max-width: 768px) {
    .terms-details {
        flex-direction: column;
    }
    .terms-section p,
    .terms-section li{
        max-width: 768px;
    }
    .terms-images img {
        width: 80%;
        max-width: 768px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .terms-images img {
        max-width: 350px;
    }
}