/* Policy Pages CSS - Reusable styles for disclaimer, privacy policy, and other policy pages */

:root {
    --primary-color: #5F259E;
    --primary-light: #8B5CF6;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;
    --text-dark: #333333;
    --text-muted: #6c757d;
    --shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
    --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

/* Hero Section Styles */
.policy-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="90" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.policy-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
}

/* Content Section */
.policy-content-section {
    padding: 3rem 0;
    background: var(--light-bg);
}

/* Sidebar */
.policy-sidebar {
    top: 2rem;
}

.sidebar-header {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem 0.5rem 0 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-header h5 {
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.policy-nav {
    background: var(--white);
    border-radius: 0 0 0.5rem 0.5rem;
    box-shadow: var(--shadow);
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    border-bottom: 1px solid var(--border-color);
}

.nav-list li:last-child {
    border-bottom: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-link:hover, .nav-link.active {
    background: var(--primary-color);
    color: white;
    border-left-color: var(--primary-light);
    text-decoration: none;
}

.nav-link i {
    width: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.quick-actions {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.quick-actions h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Main Content */
.policy-content {
    padding-left: 2rem;
}

.content-section {
    margin-bottom: 3rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

.section-icon {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.content-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

/* Disclaimer Specific Styles */
.disclaimer-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.disclaimer-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid #dee2e6;
}

.disclaimer-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.disclaimer-header i {
    font-size: 2rem;
}

.disclaimer-header h2 {
    margin: 0;
    font-weight: 700;
    font-size: 1.8rem;
}

.disclaimer-content {
    padding: 2rem;
}

.disclaimer-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
}

.disclaimer-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.important-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #856404;
}

.notice-header i {
    font-size: 1.2rem;
}

.notice-header strong {
    color: #856404;
    font-weight: 600;
}

.important-notice p {
    color: #856404;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #dee2e6;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(91, 33, 182, 0.3);
    color: white;
    text-decoration: none;
}

.btn-primary i {
    font-size: 1.2rem;
}

/* Company Card */
.company-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 2rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
}

.company-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.company-logo {
    font-size: 2.5rem;
    opacity: 0.9;
}

.company-details h3 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.company-subtitle {
    margin: 0.5rem 0 0 0;
    opacity: 0.9;
    font-size: 1rem;
}

.company-info-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-item strong {
    font-weight: 600;
    opacity: 0.9;
}

.info-item span {
    opacity: 0.8;
}

.info-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

/* Notice Boxes */
.important-notice {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #c3e6cb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Commitment Highlights */
.commitment-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 0.5rem;
    border-left: 4px solid var(--success-color);
}

.highlight-item i {
    color: var(--success-color);
    font-size: 1.1rem;
}

/* Purpose Grid */
.purpose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.purpose-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.purpose-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.purpose-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: white;
    font-size: 1.5rem;
}

.purpose-item h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.purpose-item p {
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Usage Details */
.usage-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.usage-details h3 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.usage-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0.75rem;
}

.usage-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--light-bg);
    border-radius: 0.5rem;
    margin: 0;
}

.usage-list li i {
    color: var(--success-color);
    font-size: 1rem;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.principle-card {
    background: var(--light-bg);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.principle-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.principle-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 auto 1rem auto;
}

.principle-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.principle-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Information Categories */
.info-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.info-category {
    background: var(--light-bg);
    border-radius: 0.75rem;
    padding: 1.5rem;
    border: 1px solid var(--border-color);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.category-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.category-header h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.info-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}

.info-category li:last-child {
    border-bottom: none;
}

/* AML Compliance */
.aml-compliance {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border-radius: 0.75rem;
    border: 1px solid #ffeaa7;
}

.compliance-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #856404;
}

.compliance-header i {
    font-size: 1.3rem;
}

.compliance-header h3 {
    margin: 0;
    font-weight: 600;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    color: #856404;
}

.compliance-item i {
    color: #b8860b;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.right-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.right-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.right-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.right-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: white;
    font-size: 1.3rem;
}

.right-card h4 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.right-card p {
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    font-size: 0.95rem;
}

/* Important Note */
.important-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #e7f3ff, #b8daff);
    border: 1px solid #b8daff;
    border-radius: 0.75rem;
}

.note-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: #004085;
}

.note-header i {
    font-size: 1.2rem;
}

.important-note p {
    color: #004085;
    margin: 0;
    line-height: 1.6;
}

/* Disclaimer Styles */
.disclaimer-notice {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    border-radius: 0.75rem;
    padding: 2rem;
}

.disclaimer-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #856404;
}

.disclaimer-header i {
    font-size: 2rem;
}

.disclaimer-header h3 {
    margin: 0;
    font-weight: 700;
    font-size: 1.5rem;
}

.risk-factors {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
}

.risk-factors h4 {
    color: #856404;
    font-weight: 600;
    margin-bottom: 1rem;
}

.risk-factors ul {
    margin: 0;
    padding-left: 1.5rem;
}

.risk-factors li {
    color: #856404;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* Restrictions Styles */
.restrictions-notice {
    background: linear-gradient(135deg, #f8d7da, #f5c6cb);
    border: 1px solid #f5c6cb;
    border-radius: 0.75rem;
    padding: 2rem;
}

.restrictions-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #721c24;
}

.restrictions-header i {
    font-size: 2rem;
}

.restrictions-header h3 {
    margin: 0;
    font-weight: 700;
    font-size: 1.5rem;
}

.restricted-regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.region-category {
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.region-category h4 {
    color: #721c24;
    font-weight: 600;
    margin-bottom: 1rem;
}

.region-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.region-category li {
    color: #721c24;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

/* Contact Full Width Styles */
.contact-full-width {
    width: 100%;
}

.contact-header-section {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header-section h4 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-header-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 0.75rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-method-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: white;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.method-content strong {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.method-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.method-content a:hover {
    text-decoration: underline;
}

.method-content span:not(.method-desc) {
    color: var(--text-dark);
    font-weight: 500;
}

.method-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.25rem;
    font-style: italic;
}

.additional-info-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.complaints-section {
    background: linear-gradient(135deg, #e7f3ff, #b8daff);
    border: 1px solid #b8daff;
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.complaints-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #004085;
}

.complaints-header i {
    font-size: 1.5rem;
}

.complaints-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.3rem;
}

.complaints-section p {
    color: #004085;
    margin: 0;
    line-height: 1.6;
    font-size: 1rem;
}

.social-section {
    text-align: center;
}

.social-section h5 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.social-section p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-icons-expanded {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-link:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
    box-shadow: var(--shadow);
}

.social-link i {
    font-size: 1.1rem;
}

.social-link span {
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .policy-content {
        padding-left: 0;
        margin-top: 2rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .purpose-grid,
    .principles-grid,
    .info-categories,
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-highlights {
        grid-template-columns: 1fr;
    }
    
    .company-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons-expanded {
        flex-direction: column;
        align-items: center;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
    
    .restricted-regions-grid {
        grid-template-columns: 1fr;
    }
    
    .disclaimer-header {
        padding: 1.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .disclaimer-header h2 {
        font-size: 1.5rem;
    }
    
    .disclaimer-content {
        padding: 1.5rem;
    }
    
    .disclaimer-content p {
        font-size: 1rem;
    }
    
    .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .policy-hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .content-card {
        padding: 1.5rem;
    }
    
    .company-card {
        padding: 1.5rem;
    }
    
    .contact-method-card {
        padding: 1rem;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-header-section h4 {
        font-size: 1.3rem;
    }
    
    .contact-header-section p {
        font-size: 1rem;
    }
    
    .disclaimer-notice,
    .restrictions-notice {
        padding: 1.5rem;
    }
    
    .disclaimer-header i,
    .restrictions-header i {
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States */
.nav-link:focus,
.btn:focus {
    outline: 2px solid var(--primary-light);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .policy-sidebar,
    .quick-actions,
    .social-icons {
        display: none;
    }
    
    .policy-content {
        padding-left: 0;
    }
    
    .policy-hero {
        background: var(--primary-color) !important;
        -webkit-print-color-adjust: exact;
    }
} 