/* termsOfUse.css */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
}

/* Updated container name for the Terms of Use page */
.terms-of-use-container {
    margin: 100px auto 50px auto; /* Centered, with top/bottom margin */
    background-color: #fff;
    padding: 30px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-section {
    /* Main wrapper for all text content */
}

/* The primary header on the page, used for 'Terms of Use – Rabbet Application' */
.section-heading {
    color: #000000;
    font-size: 28px;
    letter-spacing: 0.5px;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    font-weight: bold;
}

/* Heading for subsections (e.g., Virtual Credits, The License) */
.sub-section-heading {
    color: #000000;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 0;
}

/* General paragraph styling */
p {
    margin-bottom: 15px;
    color: #333;
}

/* Styling for lists within the document */
ol, ul {
    /* margin-left: 20px; */
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
}

/* Anchor/Link styling */
a {
    color: #0000ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0056b3;
    text-decoration: underline;
}


/* --- Mobile Responsiveness Adjustments --- */

@media (max-width: 1024px) { /* Tablet breakpoint */
    .elementor-hidden-tablet {
        display: none !important;
    }
}

@media (max-width: 767px) { /* Mobile breakpoint */
    .elementor-hidden-mobile {
        display: none !important;
    }
    .terms-of-use-container {
        margin: 15px;
        padding: 20px;
        width: auto; /* Allow full width of viewport */
    }
    .section-heading {
        font-size: 24px;
    }
    .sub-section-heading {
        font-size: 18px;
    }
    ol, ul {
        margin-left: 10px; /* Reduce list indentation for smaller screens */
    }
}