/* General styling for the terms container */
.terms-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* Style for each section (left and right) */
.terms-box {
    width: 48%; /* Adjust the width to your preference */
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* Style for each subsection (individual boxes) */
.subsection {
    padding: 10px;
    margin-bottom: 15px;
    background-color:  #bed1e4;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s ease;
}

/* Hover effect for each subsection box */
.subsection:hover {
    background-color: #e9ecef;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Style for subsection headers */
.subsection h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #007bff;
    transition: color 0.3s;
}

/* Hover effect for subsection headings */
.subsection h3:hover {
    color: #0056b3;
}

/* Styling for list items without bullet points */
.subsection p {
    margin: 10px 0;
    font-size: 1em;
    line-height: 1.5;
}

/* Styling for the strong text (numbered items) */
.subsection strong {
    font-weight: bold;
    display: block;
    margin-top: 5px;
}
