

.patron-protection-container {
    margin-top: 50px;
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.patron-protection-header {
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

.header-title {
    color: #000000 !important;
    font-size: 28px;
    letter-spacing: 0.5px;
    margin: 0;
    font-weight: bold;
}

.last-updated {
    color: #595959;
    font-size: 14px;
    margin-top: 10px;
}

.section-heading {
    color: #000000 !important;
    font-size: 22px;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: bold;
}

.sub-section-heading {
    color: #000000 !important;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: bold;
}

p {
    margin-bottom: 15px;
}

.spacing-paragraph {
    margin-bottom: 0; /* To control extra spacing */
    height: 1em; /* Ensures a small visual space */
}

.styled-list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.styled-list li {
    margin-bottom: 8px;
}

.nested-list {
    list-style: circle;
    padding-left: 25px;
    margin-top: 10px;
}

a {
    color: #0000ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.bold-text {
    font-weight: bold;
}

/* Specific styling for the element-like structure if needed */
.elementor-section {
    /* mimic some container properties if desired */
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.elementor-widget-container {
    padding: 10px;
}

/* Hide elements based on class names, mimicking hidden-tablet/mobile */
@media (max-width: 1024px) { /* Tablet breakpoint */
    .elementor-hidden-tablet {
        display: none !important;
    }
}

@media (max-width: 767px) { /* Mobile breakpoint */
    .elementor-hidden-mobile {
        display: none !important;
    }
    .patron-protection-container {
        margin: 15px;
        padding: 20px;
    }
    .header-title {
        font-size: 24px;
    }
    .section-heading {
        font-size: 20px;
    }
    .sub-section-heading {
        font-size: 16px;
    }
}