/* ==========================================================================
   CSS Variables & Theme Configuration
   Theme: Professional Digital Marketing (Dark Navy, Teal, White)
   ========================================================================== */
:root {
    --primary-color: #0a192f;
    --secondary-color: #64ffda;
    --secondary-dark: #14b8a6;
    --accent-color: #112240;
    --text-main: #8892b0;
    --text-light: #ccd6f6;
    --white: #ffffff;
    --background-dark: #020c1b;
    --background-light: #f8fafc;
    --border-color: #233554;
    --font-heading: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Roboto', system-ui, -apple-system, sans-serif;
    --transition-fast: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.645, 0.045, 0.355, 1);
    --shadow-light: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
    --shadow-hover: 0 20px 30px -15px rgba(100, 255, 218, 0.2);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--background-light);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Global Header (Strictly Consistent Across All Pages)
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: var(--primary-color);
    z-index: 1000;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-light);
}

.site-header.scrolled {
    height: 70px;
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    height: 100%;
}

.logo-container a {
    display: flex;
    align-items: center;
}

.logo-container img {
    height: 50px;
    filter: invert(1);
}

.site-header.scrolled .logo-container img {
    height: 45px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav a {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-cta {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-fast);
}

.header-cta:hover {
    background-color: rgba(100, 255, 218, 0.1);
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.3);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section (with 3D animations)
   ========================================================================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--background-dark) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.2;
    animation: panBackground 20s linear infinite;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(100, 255, 218, 0.1);
    color: var(--secondary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--text-light);
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--secondary-color);
    position: relative;
    display: inline-block;
}

.hero p {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 700;
    font-family: var(--font-heading);
    box-shadow: 0 4px 14px rgba(100, 255, 218, 0.4);
    transition: var(--transition-fast);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(100, 255, 218, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-secondary:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    background-color: rgba(100, 255, 218, 0.05);
}

/* 3D Hero Art */
.hero-3d-art {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cube-wrapper {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    animation: floatCube 8s ease-in-out infinite, rotateCube 20s linear infinite;
}

.cube-face {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(17, 34, 64, 0.8);
    border: 2px solid var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    box-shadow: inset 0 0 50px rgba(100, 255, 218, 0.2);
    backdrop-filter: blur(5px);
}

.front {
    transform: rotateY(0deg) translateZ(150px);
}

.back {
    transform: rotateY(180deg) translateZ(150px);
}

.right {
    transform: rotateY(90deg) translateZ(150px);
}

.left {
    transform: rotateY(-90deg) translateZ(150px);
}

.top {
    transform: rotateX(90deg) translateZ(150px);
}

.bottom {
    transform: rotateX(-90deg) translateZ(150px);
}

/* ==========================================================================
   Section Global Styles
   ========================================================================== */
section {
    padding: 6rem 5%;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-subtitle {
    color: #14b8a6;
    /* distinct teal for light bg */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-description {
    color: #555;
    font-size: 1.1rem;
}

/* ==========================================================================
   Services Section (3D Tilt Cards)
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--secondary-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-slow);
    z-index: -1;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: perspective(1000px) translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(20, 184, 166, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-dark);
    font-size: 1.5rem;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon {
    background: var(--secondary-dark);
    color: var(--white);
    transform: translateZ(30px);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transform: translateZ(20px);
}

.service-card p {
    color: #666;
    transform: translateZ(10px);
}

/* ==========================================================================
   Interactive Campaign Report Section (Pure CSS Charts)
   ========================================================================== */
.report-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.report-section .section-title {
    color: var(--white);
}

.report-section .section-description {
    color: var(--text-main);
}

.report-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--accent-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.report-controls {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.control-btn {
    background: var(--primary-color);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    transition: var(--transition-fast);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.control-btn.active,
.control-btn:hover {
    background: rgba(100, 255, 218, 0.1);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.chart-container {
    height: 350px;
    background: var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    justify-content: space-between;
}

.chart-bar-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    height: 100%;
    justify-content: flex-end;
}

.chart-bar {
    width: 100%;
    background: linear-gradient(to top, rgba(100, 255, 218, 0.2), var(--secondary-color));
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: height 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    height: 0;
    /* Default, will be overridden by JS */
}

.chart-bar::after {
    content: attr(data-value);
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 0.85rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

.chart-container:hover .chart-bar::after {
    opacity: 1;
}

.chart-label {
    color: var(--text-main);
    font-size: 0.85rem;
    font-family: var(--font-heading);
}

/* ==========================================================================
   Industry Specific Services
   ========================================================================== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.industry-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    transition: var(--transition-fast);
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.industry-img {
    width: 40%;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.industry-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-color), rgba(20, 184, 166, 0.6));
    opacity: 0.8;
}

.industry-content {
    width: 60%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.industry-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
}

.industry-content p {
    color: #666;
    font-size: 0.95rem;
}

/* ==========================================================================
   Statistics (Counter Animation)
   ========================================================================== */
.stats-section {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100%" height="100%" opacity="0.05"><defs><pattern id="p" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0 100l100-100M-25 25l50-50M75 125l50-50" stroke="%23ffffff" stroke-width="2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23p)"/></svg>') var(--primary-color);
    padding: 5rem 5%;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number span {
    font-size: 2.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section {
    background: var(--background-light);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 4rem;
    color: rgba(20, 184, 166, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    color: #444;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.author-info span {
    color: var(--secondary-dark);
    font-size: 0.9rem;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-dark), #0d9488);
    text-align: center;
    padding: 8rem 5%;
    color: var(--white);
}

.cta-section .section-title {
    color: var(--white);
    font-size: 3rem;
}

.cta-section .section-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.cta-btn {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(10, 25, 47, 0.3);
    transition: var(--transition-fast);
    display: inline-block;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(10, 25, 47, 0.4);
    color: var(--secondary-color);
}

/* ==========================================================================
   Contact Forms (For Home & Contact Pages)
   ========================================================================== */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 4rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-fast);
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-dark);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.submit-btn:hover {
    background: var(--secondary-dark);
}

/* ==========================================================================
   Legal Pages Specific Styles
   ========================================================================== */
.legal-header-spacer {
    height: 90px;
    background: var(--primary-color);
}

.legal-content {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 5%;
    background: var(--white);
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(20, 184, 166, 0.2);
    padding-bottom: 1rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.legal-content p {
    margin-bottom: 1.2rem;
    color: #444;
    line-height: 1.8;
}

.legal-content ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #444;
}

/* ==========================================================================
   Global Footer (Strictly Consistent Across All Pages)
   ========================================================================== */
.site-footer {
    background-color: var(--background-dark);
    color: var(--text-main);
    padding: 5rem 5% 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.footer-col h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1.5rem;
    filter: invert(1);
    opacity: 0.8;
}

.footer-col p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.social-links a:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-info svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary-color);
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes panBackground {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 100% 100%;
    }
}

@keyframes floatCube {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

@keyframes rotateCube {
    from {
        transform: rotateX(0deg) rotateY(0deg);
    }

    to {
        transform: rotateX(360deg) rotateY(360deg);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .industry-grid {
        grid-template-columns: 1fr;
    }

    .report-dashboard {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition-fast);
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero p {
        margin: 0 auto 2.5rem;
    }

    .hero-3d-art {
        display: none;
        /* Hide complex 3D on small mobile for perf */
    }

    .section-title {
        font-size: 2rem;
    }

    .industry-item {
        flex-direction: column;
    }

    .industry-img {
        width: 100%;
        height: 200px;
    }

    .industry-content {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-content {
        padding: 2rem;
    }
}