.elementor-95 .elementor-element.elementor-element-411bbcb{--display:flex;}/* Start custom CSS for html, class: .elementor-element-1db3d90 *//* Layout Settings */
.legal-info-wrapper {
    max-width: 1100px;
    margin: 50px auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #1d1d1f;
}

/* Header Style */
.legal-header {
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #0078d4, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

/* Grid System */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* Card Style (Glassmorphism effect) */
.legal-card {
    background: #ffffff;
    border: 1px solid #e1e1e1;
    padding: 35px;
    border-radius: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,120,212,0.08);
    border-color: #0078d4;
}

.full-width {
    grid-column: span 2;
}

/* Icons & Typography */
.card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
}

.legal-card h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.info-list li:last-child { border: none; }

/* Status Badge */
.badge {
    background: #e6f9ed;
    color: #1db954;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Contact Flex */
.contact-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.contact-item small {
    display: block;
    color: #86868b;
    margin-bottom: 5px;
}

.contact-item p {
    font-weight: 600;
    color: #0078d4;
    margin: 0;
}

/* Footer */
.legal-footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    font-size: 0.9rem;
    color: #86868b;
    border-top: 1px solid #eee;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-grid { grid-template-columns: 1fr; }
    .full-width { grid-column: span 1; }
    .legal-header h1 { font-size: 2.2rem; }
}/* End custom CSS */