/*
Theme Name: GRP Theme
Theme URI: https://gruner-richter.com
Description: Ein schlankes, minimalistisches WordPress-Theme für Gruner Richter + Partner GmbH
Version: 1.0
Author: Gruner Richter + Partner GmbH
Author URI: https://grp.solutions
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grp-theme
*/

/* ===================================
   Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===================================
   CSS Variables - Light Mode (Navy + Gold)
   =================================== */

:root,
body.theme-mode-light {
    /* Light Mode Colors */
    --navy: #1e293b;
    --navy-light: #334155;
    --gold: #f59e0b;
    --gold-dark: #d97706;
    --bg: #ffffff;
    --text: #0f172a;
    --text-light: #64748b;
    --border: #e2e8f0;

    /* Component Colors */
    --color-bg-dark: #ffffff;
    --color-bg-darker: rgba(255, 255, 255, 0.8);
    --color-card-bg: #ffffff;
    --color-card-border: #e2e8f0;
    --color-card-hover-bg: #f8fafc;
    --color-card-hover-border: #f59e0b;
    --color-footer-bg: #1e293b;
    --color-text-primary: #0f172a;
    --color-text-secondary: #64748b;
    --color-text-tertiary: #94a3b8;
    --color-text-quaternary: #cbd5e1;
    --color-link-blue: #f59e0b;

    /* Fonts */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
}

/* ===================================
   CSS Variables - Dark Mode (Original)
   =================================== */

body.theme-mode-dark {
    /* Dark Mode Colors */
    --navy: #1e293b;
    --navy-light: #334155;
    --gold: #f59e0b;
    --gold-dark: #d97706;
    --bg: #0D0E0F;
    --text: #E6F2FF;
    --text-light: #ADADAD;
    --border: #2D2D2D;

    /* Component Colors */
    --color-bg-dark: #0D0E0F;
    --color-bg-darker: #161B20;
    --color-card-bg: #141414;
    --color-card-border: #2D2D2D;
    --color-card-hover-bg: #1F1F1F;
    --color-card-hover-border: #4B4B4B;
    --color-footer-bg: #000000;
    --color-text-primary: #E6F2FF;
    --color-text-secondary: #ADADAD;
    --color-text-tertiary: #6F5C4C;
    --color-text-quaternary: #6F6F6F;
    --color-link-blue: #3b82f6;

    /* Fonts */
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-dark);
    color: var(--color-text-primary);
    line-height: 1.6;
    font-size: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    color: var(--color-link-blue);
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   Layout Structure
   =================================== */

.site-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    background-color: var(--color-bg-darker);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

body.theme-mode-light .site-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

body.theme-mode-dark .site-header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 100px;
    width: auto;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-navigation a {
    color: var(--color-text-primary);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-navigation a:hover {
    color: var(--color-link-blue);
}

/* ===================================
   Main Content
   =================================== */

.site-content {
    flex: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    width: 100%;
}

h1 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h3 {
    text-align: center;
    font-weight: normal;
}

h6 {
    text-align: center;
    font-weight: normal;
}

.pi-subline {
    color: #ADADAD;
    margin-top: 6px;
}

.pi-subline2 {
    color: #6F5C4C;
    margin-top: 2px;
}

/* ===================================
   Card Grid
   =================================== */

.pi-suggestions {
    display: flex;
    max-width: 700px;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin: 0 auto 40px auto;
}

.pi-suggestion {
    max-width: 220px;
    padding: 14px 18px;
    background-color: #141414;
    border: 1px solid #2D2D2D;
    border-radius: 12px;
    text-align: center;
    transition: background-color 0.2s, border-color 0.2s;
    cursor: pointer;
    font-size: 0.90rem;
    font-weight: normal !important;
    line-height: 1.4;
    color: #A1AAB3;
}

.pi-suggestion:hover {
    background-color: #1F1F1F;
    border-color: #4B4B4B;
    color: #ccd6e0;
}

/* ===================================
   Chat Wrapper
   =================================== */

#chat-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* ===================================
   Footer
   =================================== */

footer.site-footer {
    background: var(--navy) !important;
    background-color: var(--navy) !important;
    color: white !important;
    padding: 4rem 0 2rem !important;
    margin-top: 0 !important;
    border-top: none !important;
}

.site-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.site-footer .footer-section h4 {
    color: var(--gold) !important;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.site-footer .footer-section p,
.site-footer .footer-section a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.site-footer .footer-section a:hover {
    color: var(--gold) !important;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.9rem;
}

.site-footer .footer-bottom a {
    color: rgba(255, 255, 255, 0.5) !important;
    text-decoration: none;
    transition: color 0.3s;
}

.site-footer .footer-bottom a:hover {
    color: var(--gold) !important;
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .main-navigation ul {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
        font-size: 0.85rem;
    }

    .site-content {
        padding: 2rem 1rem;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section .subtitle {
        font-size: 1rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .card {
        padding: 1.5rem;
    }
}

/* ===================================
   WordPress Specific
   =================================== */

.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-top: 0.5rem;
}

/* ===================================
   Gutenberg Block Styles
   =================================== */

/* Container */
.grp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section with scroll animations */
.grp-section {
    padding: 8rem 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
    background-color: #EFFFEB;   
}

.grp-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Block */
.grp-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    margin-top: 0;
    padding-top: 0;
    overflow: hidden;
}

.grp-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gold);
    opacity: 0.1;
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.grp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.grp-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-align: left;
}

.grp-hero h1 .highlight {
    color: var(--gold);
}

.grp-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

/* Buttons */
.grp-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.grp-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.grp-btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.grp-btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.grp-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.grp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Section Headings */
.grp-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
    letter-spacing: -0.02em;
}

body.theme-mode-dark .grp-section h2 {
    color: var(--color-text-primary);
}

.grp-section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin-bottom: 4rem;
}

/* Card Grid Block */
.grp-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.grp-card {
    padding: 2rem;
    background: var(--color-card-bg);
    border: 2px solid var(--color-card-border);
    border-radius: 16px;
    transition: all 0.3s;
}

.grp-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body.theme-mode-dark .grp-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.grp-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

body.theme-mode-dark .grp-card h3 {
    color: var(--color-text-primary);
}

.grp-card h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--gold);
    flex-shrink: 0;
}

.grp-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.grp-card ul {
    list-style: none;
    margin: 1.5rem 0;
}

.grp-card li {
    color: var(--text-light);
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.grp-card li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* Showcase Box Block */
.grp-showcase-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    border-radius: 16px;
    padding: 3rem;
    color: white;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.grp-showcase-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: var(--gold);
    opacity: 0.1;
    border-radius: 50%;
}

.grp-showcase-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: white;
}

.grp-showcase-box h3::before {
    display: none;
}

.grp-showcase-box .grp-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--navy);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.grp-showcase-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    position: relative;
}

.grp-showcase-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: gap 0.3s;
}

.grp-showcase-link:hover {
    gap: 1rem;
}

/* Highlight Box Block */
.grp-highlight-box {
    background: var(--gold);
    color: var(--navy);
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
    text-align: center;
}

.grp-highlight-box h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--navy);
}

.grp-highlight-box h3::before {
    display: none;
}

.grp-highlight-box p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--navy);
}

/* Contact Card Grid */
.grp-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.grp-contact-card {
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.grp-contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

body.theme-mode-dark .grp-contact-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.grp-contact-card h3 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

body.theme-mode-dark .grp-contact-card h3 {
    color: var(--color-text-primary);
}

.grp-contact-email {
    display: inline-block;
    background: var(--navy);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s;
}

.grp-contact-email:hover {
    background: var(--gold);
    color: var(--navy);
    transform: translateY(-2px);
}


/* ==========================================
      Technology Section Styles
   ========================================== */
      
      
/* Technology Section Styles - Add to your theme CSS */

/* Technology Grid */
.grp-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Technology Box Base */
.grp-tech-box {
    border-radius: 16px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.grp-tech-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Navy Variant */
.grp-tech-navy {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
}

.grp-tech-navy::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: var(--gold);
    opacity: 0.1;
    border-radius: 50%;
}

/* Gold Variant */
.grp-tech-gold {
    background: var(--gold);
    color: var(--navy);
}

.grp-tech-gold::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: var(--navy);
    opacity: 0.1;
    border-radius: 50%;
}

/* Icon */
.grp-tech-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
}

/* Heading */
.grp-tech-box h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.grp-tech-gold h3 {
    color: var(--navy);
}

.grp-tech-navy h3 {
    color: white;
}

/* Subtitle */
.grp-tech-subtitle {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.grp-tech-gold .grp-tech-subtitle {
    color: var(--navy-light);
}

.grp-tech-navy .grp-tech-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

/* Description */
.grp-tech-description {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
}

.grp-tech-gold .grp-tech-description {
    color: var(--navy);
}

.grp-tech-navy .grp-tech-description {
    color: rgba(255, 255, 255, 0.9);
}

/* Features List */
.grp-tech-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
    position: relative;
}

.grp-tech-features li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    line-height: 1.6;
    font-size: 0.95rem;
}

.grp-tech-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.grp-tech-gold .grp-tech-features li {
    color: var(--navy);
}

.grp-tech-gold .grp-tech-features li::before {
    color: var(--navy);
}

.grp-tech-navy .grp-tech-features li {
    color: rgba(255, 255, 255, 0.85);
}

.grp-tech-navy .grp-tech-features li::before {
    color: var(--gold);
}

/* Tagline */
.grp-tech-tagline {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    font-style: italic;
    font-size: 1rem;
    position: relative;
}

.grp-tech-gold .grp-tech-tagline {
    color: var(--navy-light);
    border-top: 1px solid rgba(30, 41, 59, 0.2);
}

.grp-tech-navy .grp-tech-tagline {
    color: rgba(255, 255, 255, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .grp-tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .grp-tech-box {
        padding: 2rem;
    }
    
    .grp-tech-icon {
        font-size: 2.5rem;
    }
    
    .grp-tech-box h3 {
        font-size: 1.5rem;
    }
}

/* Navigation Update - Add Technology to menu */
/* If you need to add "Technology" link to your navigation, use this: */


/* Fix for sticky header scrolling */

html {
    scroll-padding-top: 70px;
}

section[id] {
    scroll-margin-top: 70px;
}

/* ===================================
   Legal Pages (Impressum / Privacy)
   =================================== */

.legal-page-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    min-height: 60vh;
    padding: 6rem 0;
}

body.theme-mode-dark .legal-page-wrapper {
    background: linear-gradient(135deg, var(--color-bg-darker) 0%, var(--color-bg-dark) 100%);
}

.legal-page-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Legal Content Styling */
.legal-content {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

body.theme-mode-dark .legal-content {
    background: var(--color-card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Legal Header */
.legal-header {
    border-bottom: 3px solid var(--gold);
    padding-bottom: 2rem;
    margin-bottom: 3rem;
}

.legal-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

body.theme-mode-dark .legal-title {
    color: var(--color-text-primary);
}

.legal-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.legal-meta p {
    margin: 0;
}

/* Legal Body Content */
.legal-body h2 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-left: 1rem;
    border-left: 4px solid var(--gold);
}

body.theme-mode-dark .legal-body h2 {
    color: var(--color-text-primary);
}

.legal-body h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

body.theme-mode-dark .legal-body h3 {
    color: var(--color-text-primary);
}

.legal-body p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text);
}

body.theme-mode-dark .legal-body p {
    color: var(--color-text-secondary);
}

.legal-body ul,
.legal-body ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-body li {
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--text);
}

body.theme-mode-dark .legal-body li {
    color: var(--color-text-secondary);
}

.legal-body a {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.legal-body a:hover {
    border-bottom-color: var(--gold);
}

.legal-body strong {
    color: var(--navy);
    font-weight: 600;
}

body.theme-mode-dark .legal-body strong {
    color: var(--color-text-primary);
}

/* Section Numbers (for Privacy Policy) */
.legal-body > ol > li {
    margin-bottom: 2rem;
}

.legal-body > ol > li::marker {
    color: var(--gold);
    font-weight: 700;
}

/* Info Boxes for Legal Pages */
.legal-info-box {
    background: #f8fafc;
    border-left: 4px solid var(--navy);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

body.theme-mode-dark .legal-info-box {
    background: var(--color-bg-darker);
}

.legal-info-box p:last-child {
    margin-bottom: 0;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-page-wrapper {
        padding: 3rem 0;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-header {
        padding-bottom: 1.5rem;
        margin-bottom: 2rem;
    }

    .legal-body h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
    }

    .legal-body ul,
    .legal-body ol {
        padding-left: 1.5rem;
    }
}