
/* Main content wrapper - fixes blocks bugged layout */
#Content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem 4rem;
}

.content_wrapper {
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.sections_group {
    padding: 2rem 2rem 3rem;
}

@media (max-width: 768px) {
    .sections_group {
        padding: 1.5rem;
    }
    #Content {
        padding: 1rem;
    }
}

/* about-area = card style */
.about-area {
    max-width: 100%;
}

.elementor-widget-container {
    background: #fff;
}

/* typography fixes */
h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #0a2540;
    border-left: 4px solid #00c96b;
    padding-left: 1rem;
}

h4:first-of-type {
    margin-top: 0;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #1e293b;
}

ol, ul {
    margin: 0.75rem 0 1rem 1.75rem;
}

li {
    margin-bottom: 0.5rem;
    font-size: 0.98rem;
    line-height: 1.5;
    color: #2c3e50;
}

ol li ol {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

strong {
    font-weight: 600;
    color: #0f172a;
}

.update-badge {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.85rem;
    color: #5b6e8c;
    text-align: right;
    font-style: normal;
}

.container {
    width: 100%;
}

/* fix broken inline elementor styles that could cause block glitches */
.elementor-widget-text-editor {
    width: 100%;
}

.e-con, .e-flex, .e-parent {
    display: block;
}

.e-con-inner {
    width: 100%;
}

/* clean any leftover glitch from old CSS */
.elementor-drop-cap {
    display: none;
}

/* additional spacing */
.about-area ol, .about-area ul {
    word-break: break-word;
}

a {
    color: #00c96b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* custom style for policy readability */
.legal-note {
    background: #f1f5f9;
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* fixing possible missing block wrappers */
.entry-content {
    width: 100%;
}

/* print support */
@media print {
    body {
        background: white;
    }
    .content_wrapper {
        box-shadow: none;
    }
    .update-badge {
        border-top: 1px solid #ccc;
    }
}

