/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #1C1C1C;
    --dark-gray: #2C2C2C;
    --medium-gray: #3C3C3C;
    --light-gray: #888888;
    --white: #FFFFFF;
    --yellow: #F0F22E;
    --yellow-dim: #D4D620;
    --navy: #1B2951;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);
    background: var(--black);
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(28, 28, 28, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--medium-gray);
}

nav.scrolled {
    box-shadow: 0 4px 30px rgba(240, 242, 46, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    background: var(--yellow);
    color: var(--black);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 242, 46, 0.3);
}

.cta-button::after {
    display: none !important;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 8rem 2rem 6rem;
    text-align: center;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    opacity: 0.02;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 40s linear infinite;
}

@keyframes rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.1;
    animation: fadeInUp 0.8s forwards;
}

.hero .subtitle {
    font-size: 1.8rem;
    color: var(--yellow);
    margin-bottom: 3rem;
    font-weight: 600;
    animation: fadeInUp 0.8s 0.2s backwards;
}

.hero .tagline {
    font-size: 1.4rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 0.8s 0.4s backwards;
}

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

/* Partnership Banner */
.partnership-banner {
    background: var(--yellow);
    color: var(--black);
    padding: 1rem;
    text-align: center;
    font-weight: 600;
}

.partnership-banner span {
    color: var(--navy);
    font-weight: 700;
}

/* Intelligence Advantage Section */
.intelligence-advantage {
    padding: 5rem 2rem;
    background: var(--black);
    border-bottom: 1px solid var(--medium-gray);
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.section-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.section-content p {
    font-size: 1.2rem;
    color: var(--light-gray);
    line-height: 1.8;
}

/* Products Section */
.products {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--light-gray);
}

/* Pull Quote */
.pull-quote {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
}

.pull-quote p {
    font-size: 1.5rem;
    color: var(--yellow);
    font-style: italic;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.product-card {
    background: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dim) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(240, 242, 46, 0.1);
}

.product-card:hover::before {
    transform: translateX(0);
}

.product-card.featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
    border: 2px solid var(--yellow);
}

.product-badge {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.product-logo {
    text-align: left;
    margin-bottom: 1.5rem;
}

.erleah-logo {
    height: 80px;
    width: auto;
    transition: all 0.3s ease;
}

.erleah-logo:hover {
    transform: scale(1.05);
}

.product-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
}

.product-description {
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    padding: 0.75rem 0;
    color: var(--light-gray);
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid var(--medium-gray);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li::before {
    content: '→';
    color: var(--yellow);
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.product-cta {
    color: var(--black);
    background: var(--yellow);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(240, 242, 46, 0.3);
}

.coming-soon {
    background: var(--medium-gray);
    color: var(--light-gray);
}

/* Trusted by Industry Leaders Section */
.trusted-by {
    padding: 5rem 2rem;
    background: var(--black);
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.trusted-by .section-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.trusted-by h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--white);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.logo-item:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 242, 46, 0.1);
}

.partner-logo {
    max-height: 80px;
    max-width: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.logo-testimonial {
    text-align: center;
}

.logo-testimonial p {
    font-size: 1.1rem;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.logo-testimonial span {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-weight: 500;
}

/* Intelligence That Actually Works Section */
.intelligence-works {
    padding: 5rem 2rem;
    background: var(--dark-gray);
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.capability-box {
    background: var(--black);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.capability-box:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 242, 46, 0.1);
}

.capability-box h3 {
    font-size: 1.4rem;
    color: var(--yellow);
    margin-bottom: 1rem;
    font-weight: 600;
}

.capability-box p {
    color: var(--light-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.section-bottom-text {
    text-align: center;
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
    margin-top: 2rem;
}

/* SmartHive Section */
.smarthive {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}

.smarthive-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.smarthive-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--yellow);
}

.smarthive-content .lead {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2rem;
    font-weight: 600;
}

.smarthive-content p {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.smarthive-benefits {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.smarthive-benefits li {
    padding: 0.75rem 0;
    color: var(--light-gray);
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid var(--medium-gray);
}

.smarthive-benefits li:last-child {
    border-bottom: none;
}

.smarthive-benefits li::before {
    content: '✓';
    color: var(--yellow);
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* Partnership Outcomes Section */
.partnership-outcomes {
    padding: 5rem 2rem;
    background: var(--black);
    border-top: 1px solid var(--medium-gray);
}

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

.outcome-column {
    background: var(--dark-gray);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.outcome-column:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 242, 46, 0.1);
}

.outcome-column h3 {
    font-size: 1.5rem;
    color: var(--yellow);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.outcome-column ul {
    list-style: none;
}

.outcome-column li {
    padding: 0.75rem 0;
    color: var(--light-gray);
    font-size: 1rem;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid var(--medium-gray);
    line-height: 1.6;
}

.outcome-column li:last-child {
    border-bottom: none;
}

.outcome-column li::before {
    content: '→';
    color: var(--yellow);
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: var(--black);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--white);
}

.about-text {
    color: var(--light-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.about-text strong {
    color: var(--yellow);
    font-weight: 600;
}

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

.value-card {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.value-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.value-description {
    color: var(--light-gray);
    line-height: 1.6;
}

/* Footer */
footer {
    background: var(--dark-gray);
    border-top: 1px solid var(--medium-gray);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-content p {
    color: var(--light-gray);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.footer-links a {
    color: var(--yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Social Media Links */
.social-media-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--medium-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 50%;
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dim) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.social-link svg {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
    border-color: var(--yellow);
    box-shadow: 0 10px 25px rgba(240, 242, 46, 0.2);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link:hover svg {
    color: var(--black);
    transform: scale(1.1);
}

.social-link:hover {
    color: var(--black);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }

/* Contact Page Styles */
.contact-hero {
    margin-top: 80px;
    padding: 4rem 2rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-gray) 100%);
    position: relative;
}

.contact-hero::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--yellow) 0%, transparent 70%);
    opacity: 0.03;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotate 30s linear infinite;
}

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

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s forwards;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--light-gray);
    line-height: 1.6;
    animation: fadeInUp 0.8s 0.2s backwards;
}

.contact-forms {
    padding: 3rem 2rem;
    background: var(--black);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-card {
    background: var(--dark-gray);
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--yellow) 0%, var(--yellow-dim) 100%);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(240, 242, 46, 0.1);
}

.contact-card:hover::before {
    transform: translateX(0);
}

.contact-card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.contact-card-header h2 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-card-header p {
    color: var(--light-gray);
    font-size: 1rem;
}

.form-container {
    padding: 0 2rem 2rem;
}

.form-container iframe {
    border-radius: 4px;
    background: var(--white);
}

/* Contact Info Section */
.contact-info {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, var(--dark-gray) 0%, var(--black) 100%);
    border-top: 1px solid var(--medium-gray);
}

.contact-info-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-info-content h2 {
    font-size: 2.2rem;
    color: var(--white);
    margin-bottom: 3rem;
}

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

.contact-method {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--medium-gray);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--light-gray);
}

.contact-method a {
    color: var(--yellow);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .contact-container {
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero {
        padding: 6rem 2rem 4rem;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 1.5rem;
    }

    .hero .subtitle {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .hero .tagline {
        font-size: 1.1rem;
    }

    .product-title {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Privacy Policy Styles */
.privacy-policy {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: var(--black);
    min-height: 100vh;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.privacy-content h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--white);
    text-align: center;
    background: linear-gradient(135deg, var(--white) 0%, var(--yellow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-content .last-updated {
    text-align: center;
    color: var(--light-gray);
    font-size: 1rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--medium-gray);
}

.privacy-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
    color: var(--yellow);
    position: relative;
    padding-left: 1rem;
}

.privacy-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--yellow);
    border-radius: 2px;
}

.privacy-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    color: var(--white);
}

.privacy-content p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

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

.privacy-content li {
    color: var(--light-gray);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.privacy-content ul li {
    list-style: none;
    position: relative;
}

.privacy-content ul li::before {
    content: '→';
    color: var(--yellow);
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.privacy-content ol li {
    color: var(--light-gray);
}

.privacy-content a {
    color: var(--yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.privacy-content a:hover {
    color: var(--white);
    border-bottom-color: var(--yellow);
}

.privacy-content strong {
    color: var(--white);
    font-weight: 600;
}

.privacy-content hr {
    border: none;
    height: 1px;
    background: var(--medium-gray);
    margin: 3rem 0;
}

.privacy-content .closing-message {
    text-align: center;
    font-size: 1.1rem;
    color: var(--light-gray);
    font-style: italic;
    margin: 2rem 0 1rem 0;
}

.privacy-content .brand-signature {
    text-align: center;
    font-size: 1.2rem;
    color: var(--yellow);
    font-weight: 600;
    margin-bottom: 0;
}

/* Privacy Policy Responsive */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 3rem 1.5rem;
    }
    
    .privacy-content h1 {
        font-size: 2.2rem;
    }
    
    .privacy-content h2 {
        font-size: 1.5rem;
        margin: 2.5rem 0 1rem 0;
    }
    
    .privacy-content h3 {
        font-size: 1.2rem;
    }
    
    .privacy-content ul,
    .privacy-content ol {
        padding-left: 1.5rem;
    }
}
