/* styles.css */

/* Global resets and body */
body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

/* Header gradient background */
.legal-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
    padding: 3rem 0;
    text-align: center;
}

/* Glass effect cards */
.glass-effect {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Section cards */
.section-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
    overflow: hidden;
}

/* Icon wrapper */
.icon-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subsection left border */
.subsection {
    border-left: 4px solid #667eea;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

/* Protection badge */
.protection-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin: 0.25rem;
}

/* Legal structure diagram */
.legal-structure-diagram {
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

/* Entity box */
.entity-box {
    background: white;
    border: 2px solid #667eea;
    border-radius: 8px;
    padding: 1rem;
    margin: 0.5rem;
    display: inline-block;
    min-width: 200px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .entity-box {
        min-width: 100%;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Print styles */
@media print {
    body { background: white !important; }
    .glass-effect { background: white !important; backdrop-filter: none !important; }
    .section-card { box-shadow: none !important; border: 1px solid #e5e7eb !important; }
}






.sec-pad {
    padding: 7rem 0 3.5rem 0 !important;
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}