/* ===== SCALEASEAN - UPDATED MOBILE-FIRST STYLES ===== */

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

:root {
    --blue-primary: #1E3A8A;
    --green-accent: #10B981;
    --amber-accent: #F59E0B;
    --gray-dark: #1F2937;
    --gray-medium: #6B7280;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
}

/* Navigation - Mobile First */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 32px;
}

@media (min-width: 768px) {
    .logo img {
        height: 40px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--blue-primary);
    transition: all 0.3s;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Navigation Menu */
.nav-menu {
    display: none;
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.nav-menu.active {
    display: block;
}

.nav-menu li {
    padding: 0.625rem 1.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    display: block;
    transition: color 0.3s;
    letter-spacing: -0.01em;
}

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

.cta-button {
    background: var(--blue-primary);
    color: var(--white) !important;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-top: 0.5rem;
    display: inline-block;
    font-weight: 600;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 2rem;
        align-items: center;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu a {
        display: inline;
    }

    .cta-button {
        margin-top: 0;
        padding: 0.5rem 1.25rem;
    }
}

/* Hero Section - Mobile First */
.hero {
    background: linear-gradient(135deg, var(--blue-primary) 0%, #1e40af 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .hero {
        padding: 5rem 0 3rem;
    }
}

.hero h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--green-accent);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        margin-bottom: 3rem;
        padding: 0;
    }
}

/* Buttons */
.btn {
    padding: 0.875rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid transparent;
    text-align: center;
}

@media (min-width: 768px) {
    .btn {
        padding: 0.875rem 2rem;
    }
}

.btn-primary {
    background: var(--green-accent);
    color: var(--white);
}

.btn-primary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

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

.btn-outline {
    background: transparent;
    color: var(--blue-primary);
    border-color: var(--blue-primary);
}

.btn-outline:hover {
    background: var(--blue-primary);
    color: var(--white);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    padding: 0.75rem 2rem;
}

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

.btn-primary-large {
    background: var(--green-accent);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

@media (min-width: 768px) {
    .btn-primary-large {
        padding: 1rem 3rem;
    }
}

.btn-primary-large:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Hero Stats - Mobile First */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-accent);
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.8125rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

@media (min-width: 768px) {
    .stat-label {
        font-size: 0.875rem;
    }
}

/* Sections */
.section {
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .section {
        padding: 4rem 0;
    }
}

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

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--blue-primary);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }
}

.section-subtitle {
    font-size: 1rem;
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-subtitle {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }
}

/* Problem Cards - Mobile First */
.problems-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .problems-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
}

.problem-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .problem-card {
        padding: 2rem;
    }
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .problem-icon {
        font-size: 3rem;
    }
}

.problem-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--blue-primary);
}

@media (min-width: 768px) {
    .problem-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.problem-text {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .problem-text {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}

.solution-text {
    color: var(--green-accent);
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .solution-text {
        font-size: 0.9375rem;
    }
}

.truth-box {
    background: var(--blue-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .truth-box {
        padding: 2rem;
        margin-top: 3rem;
    }
}

.truth-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .truth-box h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Process Steps - Mobile First */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--green-accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--gray-medium);
    font-size: 0.9375rem;
}

/* Services Grid - Mobile First */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 3rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .service-card {
        padding: 2rem;
    }
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border-color: var(--green-accent);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-accent);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
}

.service-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--blue-primary);
}

@media (min-width: 768px) {
    .service-header h3 {
        font-size: 1.5rem;
    }
}

.service-best-for {
    font-size: 0.875rem;
    color: var(--gray-medium);
    font-style: italic;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--green-accent);
    margin: 1rem 0 0.5rem;
}

@media (min-width: 768px) {
    .service-price {
        font-size: 2rem;
    }
}

.service-duration {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.service-value {
    margin: 1rem 0 0.75rem;
    color: var(--gray-dark);
    font-size: 0.9375rem;
}

.service-features {
    list-style: none;
    margin: 1rem 0;
    text-align: left;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-medium);
    font-size: 0.9375rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--green-accent);
    font-weight: 700;
}

.service-outcome {
    background: var(--gray-light);
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    font-size: 0.875rem;
    color: var(--gray-dark);
}

@media (min-width: 768px) {
    .service-outcome {
        font-size: 0.9375rem;
    }
}

.founder-rate-box {
    background: linear-gradient(135deg, var(--blue-primary) 0%, #1e40af 100%);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .founder-rate-box {
        padding: 2rem;
    }
}

.founder-rate-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .founder-rate-box h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Transformation Section - Mobile First */
.transformation-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 1024px) {
    .transformation-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: 3rem;
    }
}

.transformation-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .transformation-text h2 {
        font-size: 2rem;
    }
}

.large-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .large-text {
        font-size: 1.25rem;
    }
}

.transformation-text p {
    color: var(--gray-medium);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    line-height: 1.7;
}

@media (min-width: 768px) {
    .transformation-text p {
        font-size: 1rem;
    }
}

.mistakes-box {
    background: #FEF3C7;
    padding: 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--amber-accent);
    margin: 1.5rem 0;
}

@media (min-width: 768px) {
    .mistakes-box {
        padding: 1.5rem;
    }
}

.mistakes-box h3 {
    color: var(--blue-primary);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .mistakes-box h3 {
        font-size: 1.125rem;
    }
}

.mistakes-box ul {
    margin-left: 1.5rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

.emphasis {
    font-weight: 600;
    color: var(--blue-primary);
}

.transformation-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 768px) {
    .transformation-proof {
        gap: 1.5rem;
    }
}

.proof-card {
    background: var(--gray-light);
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
}

@media (min-width: 768px) {
    .proof-card {
        padding: 1.5rem;
    }
}

.proof-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-accent);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .proof-number {
        font-size: 1.5rem;
    }
}

.proof-label {
    color: var(--gray-medium);
    font-size: 0.8125rem;
}

@media (min-width: 768px) {
    .proof-label {
        font-size: 0.875rem;
    }
}

/* Regional Differences - Mobile First */
.regional-differences {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .regional-differences {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 3rem;
    }
}

.difference-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .difference-card {
        padding: 2rem;
    }
}

.difference-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-primary);
    margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
    .difference-card h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
}

.difference-card p {
    color: var(--gray-medium);
    line-height: 1.7;
    font-size: 0.9375rem;
}

@media (min-width: 768px) {
    .difference-card p {
        font-size: 1rem;
    }
}

.experience-callout {
    background: var(--blue-primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .experience-callout {
        padding: 2rem;
    }
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--blue-primary) 0%, #1e40af 100%);
    color: var(--white);
    text-align: center;
    padding: 3rem 0;
}

@media (min-width: 768px) {
    .cta-section {
        padding: 4rem 0;
    }
}

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

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 2.25rem;
    }
}

.cta-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-section p {
        font-size: 1.125rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        padding: 0;
    }
}

.cta-guarantee {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .cta-guarantee {
        font-size: 0.9375rem;
    }
}

/* Footer - Mobile First */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 2rem 0 1rem;
}

@media (min-width: 768px) {
    .footer {
        padding: 3rem 0 1rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
}

@media (min-width: 768px) {
    .footer-bottom p {
        font-size: 0.875rem;
    }
}

/* Problem Section Specific */
.problem-section {
    background: var(--gray-light);
}

/* Services Page Specific Styles */
.hero-small {
    padding: 3rem 0 2rem;
}

@media (min-width: 768px) {
    .hero-small {
        padding: 4rem 0 3rem;
    }
}

.service-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .service-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

.category-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.category-card:hover {
    border-color: var(--green-accent);
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.category-card h3 {
    font-size: 1.25rem;
    color: var(--blue-primary);
    margin-bottom: 1rem;
}

.category-card p {
    color: var(--gray-medium);
    margin-bottom: 1.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.why-card h3 {
    font-size: 1.125rem;
    color: var(--blue-primary);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--gray-medium);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.pricing-philosophy {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.pricing-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
    text-align: left;
}

@media (min-width: 768px) {
    .pricing-points {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-point {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.pricing-point h3 {
    font-size: 1.125rem;
    color: var(--blue-primary);
    margin-bottom: 0.75rem;
}

.pricing-point p {
    color: var(--gray-medium);
    font-size: 0.9375rem;
}

/* Privacy Policy Styles */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .legal-content {
        padding: 3rem;
    }
}

.legal-content h1 {
    font-size: 2rem;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .legal-content h1 {
        font-size: 2.5rem;
    }
}

.last-updated {
    color: var(--gray-medium);
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-light);
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--blue-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.125rem;
    color: var(--gray-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    color: var(--gray-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--gray-medium);
    line-height: 1.8;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: var(--blue-primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--green-accent);
}

.contact-box {
    background: var(--gray-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--green-accent);
}

.contact-box p {
    margin-bottom: 0.75rem;
}

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

.policy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-light);
    text-align: center;
}

.policy-footer p {
    color: var(--gray-medium);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;

    /* Navigation Drop Down */

    .nav-dropdown {
        position: relative;
    }

    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        list-style: none;
        padding: 0.5rem 0;
        min-width: 200px;
    }

    .nav-dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        padding: 0;
    }

    .dropdown-menu a {
        display: block;
        padding: 0.75rem 1rem;
        color: var(--gray-dark);
    }

    .dropdown-menu a:hover {
        background: var(--gray-light);
        color: var(--blue-primary);
    }