* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --accent-color: #0ea5e9;
    --success-color: #10b981;
    --dark-bg: #1e293b;
    --text-light: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation - Bootstrap Integration */
.navbar {
    padding: 1rem 0;
}

.navbar .container {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-collapse {
    display: flex !important;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
}

.navbar-nav-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.2;
}

.logo-tagline {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.2;
}

/* Bootstrap Navbar Customization */
.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    margin-top: 0.5rem;
    padding: 0;
}

.products-dropdown {
    min-width: 600px;
    padding: 0;
}

.dropdown-content-wrapper {
    display: flex;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-left,
.dropdown-right {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
}

.dropdown-divider-vertical {
    width: 1px;
    background-color: var(--border-color);
    margin: 0.5rem 0;
}

.dropdown-preview {
    padding: 1.5rem;
    background: var(--bg-light);
    min-height: 200px;
}

.preview-content {
    animation: fadeIn 0.3s ease;
}

.preview-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.preview-content > p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.preview-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.preview-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.75rem;
}

/* HIPAA Compliant Software Page */
.hipaa-software-section {
    padding: 4rem 0;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.intro-text .lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.product-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.product-icon {
    color: var(--primary-color);
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.version-info {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.product-card > p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

.key-features-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.feature-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.7;
}

.cta-section {
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 8px;
    color: white;
}

.cta-section h2 {
    color: white;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
}

/* FOSS Section Styles */
.foss-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.foss-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.foss-header .lead {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.foss-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.foss-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.foss-icon {
    color: var(--primary-color);
}

.foss-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.foss-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.community-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.community-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.community-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.community-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.community-icon {
    color: var(--success-color);
}

.community-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.community-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.foss-benefits h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Release Schedule Styles */
.foss-release-info h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
}

.release-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
}

.release-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.release-card > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.release-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.release-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.release-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* DLP Pricing Tiers Styles */
.pricing-tiers-section {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.pricing-tiers-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.tier-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
}

.tier-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.tier-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.tier-card.enterprise {
    border-color: var(--primary-dark);
    border-width: 3px;
}

.tier-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tier-badge.enterprise-badge {
    background: var(--primary-dark);
}

.tier-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    margin-top: 0.5rem;
}

.tier-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tier-features ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.tier-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

.tier-features ul li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.source-license-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.info-box {
    background: white;
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
}

.info-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.info-box p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-box ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.info-box ul li {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0.5rem 0;
}

/* HIPAA Compliance Scanner Styles */
.scanner-section {
    margin-bottom: 4rem;
}

.scanner-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    padding: 3rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.scanner-badge {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.badge-free {
    background: var(--success-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-tool {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.scanner-card h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.scanner-card .lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.scanner-features {
    margin: 2rem 0;
}

.scanner-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scanner-feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.7;
}

.scanner-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.scanner-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.scanner-icon {
    color: rgba(255, 255, 255, 0.3);
}

.scanner-info-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scanner-info-box h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.scanner-info-box p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.scanner-info-box strong {
    color: white;
    font-weight: 600;
}

.section-subtitle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .scanner-cta {
        flex-direction: column;
    }
    
    .scanner-cta .btn {
        width: 100%;
    }
}

/* HIPAA Compliance Scanner Page Styles */
.scanner-page-section {
    padding: 4rem 0;
}

.scanner-hero {
    text-align: center;
    margin-bottom: 3rem;
}

.scanner-hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.scanner-hero .lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
}

.scanning-features h3,
.key-features-section h3,
.use-cases-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.scan-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.scan-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.scan-icon {
    color: var(--primary-color);
}

.scan-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.scan-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.scan-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.scan-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.key-features-section .feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    height: 100%;
}

.key-features-section .feature-icon {
    flex-shrink: 0;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 8px;
}

.key-features-section .feature-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.key-features-section .feature-item p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.7;
}

.use-case-item {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
}

.use-case-item h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.use-case-item p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.dlp-connection-section .info-box {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
}

.dlp-connection-section .info-box h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.dlp-connection-section .info-box p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.dlp-connection-section .info-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.dlp-connection-section .info-box a:hover {
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Scanner Fear-Based Marketing Styles */
.warning-box {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.warning-box h4 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.warning-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.warning-box strong {
    color: white;
    font-weight: 700;
}

.consequences-section {
    margin: 3rem 0;
}

.consequence-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
}

.consequence-card.severe {
    border-color: #dc2626;
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.consequence-card:hover {
    box-shadow: 0 8px 24px rgba(220, 38, 38, 0.2);
    transform: translateY(-4px);
}

.consequence-icon {
    color: #dc2626;
}

.consequence-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.fine-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin: 1rem 0;
}

.consequence-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.solution-section {
    margin: 3rem 0;
}

.solution-box {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 3rem;
}

.solution-box h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.problem-box {
    background: white;
    border: 2px solid #dc2626;
    border-left: 6px solid #dc2626;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
}

.problem-box h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.problem-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-box ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.problem-box ul li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 600;
    font-size: 1.2rem;
}

.solution-box-content {
    background: white;
    border: 2px solid var(--success-color);
    border-left: 6px solid var(--success-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
}

.solution-box-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.solution-box-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.solution-box-content ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

.solution-box-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.cta-box {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.cta-box h4 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.cta-box p {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.cta-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.cta-box a:hover {
    text-decoration: underline;
}

.scare-stats {
    margin: 2rem 0;
}

.stat-box {
    background: white;
    border: 2px solid #dc2626;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
}

.small-text {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

/* HIPAA DLP Page Styles */
.hipaa-dlp-section {
    padding: 4rem 0;
}

.feature-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.feature-card .feature-icon {
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.capabilities-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 4px;
}

.capability-item .check-icon {
    color: var(--success-color);
    font-weight: 600;
    font-size: 1.1rem;
}

.capability-item span:last-child {
    color: var(--text-gray);
}

/* Accessibility Page Styles */
.policy-content .lead {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.accessibility-features .feature-item,
.software-features .feature-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    height: 100%;
}

.accessibility-features .feature-item h4,
.software-features .feature-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.accessibility-features .feature-item p,
.software-features .feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.policy-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.policy-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.policy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-content ul li {
    margin: 0.75rem 0;
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-info {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-info p {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.last-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.last-updated p {
    color: var(--text-gray);
    font-style: italic;
}

/* Todd Link */
.todd-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.todd-link:hover {
    color: var(--primary-color);
}

/* Bootstrap navbar toggler customization */
.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
    order: 3;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Responsive: Center nav on mobile */
@media (max-width: 991.98px) {
    .navbar-nav-wrapper {
        position: static;
        transform: none;
        width: 100%;
    }
    
    .navbar-collapse {
        flex-direction: column;
        align-items: stretch;
    }
    
    .navbar-nav {
        margin: 1rem 0;
    }
    
    .btn-primary {
        margin-left: 0 !important;
        margin-top: 1rem;
        width: 100%;
    }
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding-top: 100px;
    color: white;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 3rem 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* Differentiators Section */
.differentiators {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.diff-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.diff-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.diff-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Page Header */
.page-header {
    padding: 6rem 0 3rem;
    background: var(--bg-light);
    margin-top: 70px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-gray);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
}

.features-section.alt {
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.feature-card.highlight {
    border-left-color: var(--accent-color);
    background: linear-gradient(to right, rgba(14, 165, 233, 0.05), white);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Enterprise Page */
.awards-section {
    padding: 4rem 0;
    background: white;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.award-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.award-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.award-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.award-card p {
    color: var(--text-gray);
}

.institutions-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.institutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.institution-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.institution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.institution-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.institution-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.architecture-section {
    padding: 5rem 0;
    background: white;
}

.architecture-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tier-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    border: 2px solid var(--border-color);
}

.tier-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.tier-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.tier-card ul {
    list-style: none;
}

.tier-card ul li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
}

.tier-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

/* Pricing Page */
.pricing-page {
    padding: 4rem 0;
    background: var(--bg-light);
}

.pricing-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pricing-card h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.price {
    text-align: center;
    margin: 2rem 0;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-left: 0.5rem;
}

.price-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.pricing-features {
    margin: 2rem 0;
}

.pricing-features h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.pricing-features ul {
    list-style: none;
}

.pricing-features ul li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 2rem;
    position: relative;
}

.pricing-features ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.pricing-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
}

.pricing-note p {
    color: var(--text-gray);
    line-height: 1.7;
}

.pricing-cta {
    text-align: center;
    margin-top: 2rem;
}

.value-section {
    padding: 5rem 0;
    background: white;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Contact Page */
.contact-page {
    padding: 4rem 0;
    background: var(--bg-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-gray);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form-wrapper h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Billing Page Styles */
.billing-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.billing-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.billing-hero-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.billing-hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

.billing-features {
    padding: 5rem 0;
    background: white;
}

.billing-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.billing-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.billing-feature-card.highlight {
    border: 2px solid var(--accent-color);
    background: linear-gradient(to bottom, rgba(14, 165, 233, 0.03), white);
}

.billing-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.billing-feature-card h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.billing-feature-card > p {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-benefits {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-benefits li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.feature-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
}

.enterprise-rcm {
    padding: 5rem 0;
    background: var(--bg-light);
}

.enterprise-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.enterprise-feature-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--accent-color);
}

.enterprise-feature-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.enterprise-feature-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.billing-benefits {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

.billing-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.billing-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.billing-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Landing Page Styles */
.landing-hero {
    min-height: 85vh;
}

.hero-trust {
    margin-top: 2rem;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    display: block;
}

/* Social Proof Section */
.social-proof {
    padding: 3rem 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.proof-label {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.institutions-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.logo-item {
    color: var(--text-gray);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
}

/* Landing Stats */
.landing-stats {
    padding: 4rem 0;
}

.stat-note {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
    font-style: italic;
}

/* Problem/Solution Section */
.problem-solution {
    padding: 5rem 0;
    background: var(--bg-light);
}

.ps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.ps-item {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ps-item.problem {
    border-left: 4px solid #ef4444;
}

.ps-item.solution {
    border-left: 4px solid var(--success-color);
}

.ps-item h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.ps-item ul {
    list-style: none;
}

.ps-item ul li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-dark);
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Unique Features */
.unique-features {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.unique-features .section-title {
    color: white;
}

.unique-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.unique-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.unique-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.unique-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Pricing Preview */
.pricing-preview {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pricing-preview-card {
    max-width: 600px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1.25rem;
    color: var(--text-gray);
}

.price-includes {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    padding: 0;
}

.price-includes li {
    padding: 0.75rem 0;
    color: var(--text-gray);
    padding-left: 2rem;
    position: relative;
}

.price-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: white;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.form-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-content > p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    list-style: none;
    padding: 0;
}

.form-benefits li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-weight: 500;
}

.form-wrapper {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.landing-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Todd Xavier Landeau Memorial Page */
.todd-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding-top: 80px;
    text-align: center;
}

.todd-hero-content {
    max-width: 800px;
    padding: 3rem 2rem;
}

.todd-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.todd-dates {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-weight: 300;
}

.todd-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.todd-hero-link {
    margin-top: 2rem;
}

.cancer-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border: 2px solid white;
    border-radius: 4px;
    display: inline-block;
    transition: all 0.3s ease;
}

.cancer-link:hover {
    background: white;
    color: var(--primary-color);
}

.todd-memorial {
    padding: 5rem 0;
    background: white;
}

.memorial-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.memorial-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-dark);
    text-align: center;
}

.memorial-intro {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 500;
}

.memorial-content p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.memorial-quote {
    background: var(--bg-light);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    margin: 3rem 0;
    border-radius: 4px;
}

.memorial-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

.memorial-closing {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 500;
    text-align: center;
    margin-top: 3rem;
}

/* Obituary Section */
.obituary-section {
    padding: 3rem 0 5rem;
    background: var(--bg-light);
}

.obituary-expandable {
    max-width: 800px;
    margin: 0 auto;
}

.obituary-toggle {
    width: 100%;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.obituary-toggle:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

.toggle-icon {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.obituary-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}

.obituary-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    border-left: 2px solid var(--border-color);
    border-right: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    border-radius: 0 0 4px 4px;
}

.obituary-content.expanded {
    max-height: 500px;
    padding: 1.5rem;
}

.obituary-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: #1e3a5f;
    padding: 3rem 0 1.5rem;
    color: white;
}

.footer-main {
    margin-bottom: 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: text-decoration 0.3s ease;
}

.footer-column a:hover {
    text-decoration: underline;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-links-row a {
    color: white;
    text-decoration: underline;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links-row a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
}

.footer-bottom {
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left {
    color: #cccccc;
    font-size: 0.85rem;
}

.footer-bottom-right {
    color: #cccccc;
    font-size: 0.85rem;
}

.todd-link {
    color: #cccccc;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.todd-link:hover {
    color: white;
    text-decoration: underline;
}


.footer-copyright {
    color: #cccccc;
    font-weight: 400;
}

/* Demo Page Styles */
.demo-block {
    padding: 5rem 0;
    background: white;
}

.demo-block.alt {
    background: var(--bg-light);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.demo-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.demo-content.reverse .demo-screenshot {
    order: -1;
}

.demo-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.demo-text > p {
    font-size: 1.25rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.demo-features {
    list-style: none;
    padding: 0;
}

.demo-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-gray);
    font-size: 1.1rem;
    line-height: 1.7;
}

.demo-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.demo-screenshot {
    position: relative;
}

.screenshot-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 4rem 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.screenshot-placeholder p {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.screenshot-placeholder span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

.demo-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.demo-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.demo-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Policy/FAQ Pages */
.faqs-section,
.policy-section,
.sitemap-section {
    padding: 4rem 0;
    background: white;
}

.faq-content,
.policy-content,
.sitemap-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-content h2,
.policy-content h2,
.sitemap-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.faq-content p,
.policy-content p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.policy-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.policy-content ul li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.sitemap-content ul {
    list-style: none;
    padding: 0;
}

.sitemap-content ul li {
    margin-bottom: 1rem;
}

.sitemap-content ul li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.sitemap-content ul li a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.footer-bold {
    font-weight: 700;
    font-size: 1rem;
    margin: 0.75rem 0;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0.5rem;
    }

    .btn-demo {
        display: none;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .diff-grid,
    .features-grid,
    .institutions-grid,
    .architecture-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .ps-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        grid-template-columns: 1fr;
    }

    .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .demo-content.reverse .demo-screenshot {
        order: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .footer-bold {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
