/* PowerPlay Digital - Global Styles */

/* Color Variables matching logo */
:root {
    --navy-blue: #2B3A8E;
    --bright-red: #DC1F37;
    --sky-blue: #0D9FD9;
    --light-blue: #4EBEDC;
    --dark-navy: #1A1F4D;
    --light-gray: #F5F7FA;
    --medium-gray: #6B7280;
    --text-dark: #1F2937;
}

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

/* Typography - Proxima Nova alternative */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;600;700;800;900&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

body {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.65;
    overflow-x: hidden;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bright-red) 50%, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar:hover::after {
    opacity: 1;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--bright-red), var(--navy-blue));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 31, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::before {
    transform: translate(-50%, -50%) scale(1.5);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--bright-red);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, var(--bright-red) 0%, #FF1744 100%);
    color: white;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(220, 31, 55, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(220, 31, 55, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy-blue);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Sections */
.hero {
    padding-top: 90px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-home {
    /* background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 50%, #0D1B3E 100%); */
    background: linear-gradient(135deg, rgba(43, 58, 142, 0.85) 0%, rgba(30, 40, 112, 0.85) 100%), url('/images/hero-home.jpg') center/cover no-repeat;
    color: white;
}

.hero-political {
    /* background: linear-gradient(135deg, var(--navy-blue) 0%, #1E2870 50%, var(--dark-navy) 100%); */
    background: linear-gradient(135deg, rgba(43, 58, 142, 0.7) 0%, rgba(30, 40, 112, 0.7) 100%), url('/images/hero-political.jpg') center/cover no-repeat;
    color: white;
}

.hero-travel {
    /* background: linear-gradient(135deg, var(--sky-blue) 0%, var(--light-blue) 50%, #00C4CC 100%); */
    background: linear-gradient(135deg, rgba(13, 159, 217, 0.7) 0%, rgba(78, 190, 220, 0.7) 100%), url('/images/hero-travel.jpg') center/cover no-repeat;
    color: white;
}

.hero-sports {
    /* background: linear-gradient(135deg, var(--bright-red) 0%, #E63946 50%, #FF1744 100%); */
    background: linear-gradient(135deg, rgba(220, 31, 55, 0.7) 0%, rgba(230, 57, 70, 0.7) 100%), url('/images/hero-sports.jpg') center/cover no-repeat;
    color: white;
}

.hero-omnichannel {
    /* background: linear-gradient(135deg, var(--dark-navy) 0%, var(--navy-blue) 50%, #2B4A9E 100%); */
    background: linear-gradient(135deg, rgba(26, 31, 77, 0.85) 0%, rgba(43, 58, 142, 0.85) 100%), url('/images/hero-omnichannel.jpg') center/cover no-repeat;
    color: white;
}

.hero-legal {
    background: linear-gradient(135deg, rgba(43, 58, 142, 0.9) 0%, rgba(26, 31, 77, 0.95) 100%);
    color: white;
    min-height: 40vh;
}

.hero-about {
    background: linear-gradient(135deg, rgba(43, 58, 142, 0.85) 0%, rgba(26, 31, 77, 0.9) 100%), url('/images/hero-home.jpg') center/cover no-repeat;
    color: white;
    min-height: 50vh;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.hero-text .highlight {
    background: linear-gradient(135deg, var(--light-blue) 0%, #00FFD1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-blue), #00FFD1);
    opacity: 0.5;
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background: white;
    color: var(--navy-blue);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2.5rem;
    border: 2px solid white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: var(--navy-blue);
}

/* Stats Grid */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-blue), var(--bright-red), var(--light-blue));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.stat-box:hover::before {
    transform: translateX(0);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
    color: white;
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Sections */
.section {
    padding: 5rem 2rem;
}

.section-light {
    background: white;
}

.section-gray {
    background: var(--light-gray);
}

.section-dark {
    background: var(--dark-navy);
    color: white;
}

.section-navy {
    background: var(--navy-blue);
    color: white;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-tag {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--bright-red);
    margin-bottom: 1rem;
}

.section-dark .section-tag,
.section-navy .section-tag {
    color: var(--light-blue);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--navy-blue);
}

.section-dark .section-title,
.section-navy .section-title {
    color: white;
}

.section-description {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-description,
.section-navy .section-description {
    color: rgba(255, 255, 255, 0.8);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bright-red), var(--navy-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(220, 31, 55, 0.03) 0%, transparent 70%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

.card:hover::before {
    transform: scaleX(1);
}

.card:hover::after {
    transform: translate(-50%, -50%) scale(2);
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(220, 31, 55, 0.2);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: linear-gradient(135deg, rgba(220, 31, 55, 0.1) 0%, rgba(43, 58, 142, 0.1) 100%);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(220, 31, 55, 0.15) 0%, rgba(43, 58, 142, 0.15) 100%);
}

.card h3 {
    font-size: 1.5rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
}

.card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: left;
}

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

.card ul li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    display: flex;
    align-items: start;
    gap: 0.75rem;
}

.card ul li::before {
    content: '✓';
    color: var(--bright-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Two Column Grid */
.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Features List */
.features-list {
    display: grid;
    gap: 1.5rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--navy-blue);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.section-dark .feature-item {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: var(--bright-red);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.3rem;
    color: var(--navy-blue);
    margin-bottom: 0.75rem;
}

.section-dark .feature-item h3 {
    color: white;
}

.feature-item p {
    color: var(--medium-gray);
    line-height: 1.7;
}

.section-dark .feature-item p {
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 3.5rem 2rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 31, 55, 0.05) 0%, rgba(43, 58, 142, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(220, 31, 55, 0.3);
}

.stat-card .percentage {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bright-red) 0%, var(--navy-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
}

.stat-card p {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Logos Grid */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.logo-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s ease;
}

.logo-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--bright-red);
    transform: scale(1.05);
}

.logo-box img {
    max-width: 100%;
    max-height: 60px;
}

/* Content with Image */
.content-image-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-image-row img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Table Styles */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.comparison-table th {
    background: var(--navy-blue);
    color: white;
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #E5E7EB;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: var(--light-gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bright-red) 0%, #E63946 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/></svg>');
    animation: move-pattern 20s linear infinite;
}

@keyframes move-pattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(60px) translateY(60px); }
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--dark-navy);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: white;
}

.footer-brand img {
    max-width: 200px;
    height: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bright-red);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .content-image-row {
        grid-template-columns: 1fr;
    }
    
    .cards-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stats-row {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 4rem;
}

.embed-16x9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 9/16 = 0.5625 */
    height: 0;
    overflow: hidden;
}

.embed-16x9 iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Legal Pages Styles */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 1.2rem;
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E5E7EB;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.6rem;
    color: var(--navy-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-section p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style: none;
    margin: 1rem 0 1.5rem;
    padding-left: 0;
}

.legal-section ul li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--bright-red);
    border-radius: 50%;
}

.legal-section a {
    color: var(--navy-blue);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-section a:hover {
    color: var(--bright-red);
}