        /* Guarantee page styles - inherits base styles from site.css */
        body {
            color: var(--text-light);
            overflow-x: hidden;
        }
        
        /* Guarantee page specific typography overrides */
        h3 {
            font-weight: 500;
        }
        
        /* Container */
        .narrow-container {
            max-width: 700px;
        }
        
        
        /* Main content spacing */
        main {
        }
        
        /* Hero styles now use global .hero class from site.css */
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-top: 1rem;
        }
        
        /* Guarantee specific styles */
        .guarantee-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--green);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 2rem;
        }
        
        .guarantee-visual {
            max-width: 400px;
            margin: 3rem auto;
            text-align: center;
        }
        
        .shield-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
            position: relative;
        }
        
        .guarantee-card {
            background: var(--bg);
            border: 2px solid var(--navy);
            border-radius: 16px;
            padding: 3rem;
            margin: 3rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .guarantee-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--green);
        }
        
        .checkmark-list {
            list-style: none;
            padding: 0;
            text-align: left;
            max-width: 600px;
            margin: 2rem auto;
        }
        
        .checkmark-list li {
            padding: 1rem 0 1rem 2rem;
            position: relative;
            border-bottom: 1px solid rgba(15, 31, 51, 0.1);
        }
        
        .checkmark-list li:last-child {
            border-bottom: none;
        }
        
        .checkmark-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--green);
            font-weight: 700;
            font-size: 1.25rem;
        }
        
        .terms-section {
            background: var(--bg-subtle);
            padding: 3rem;
            border-radius: 8px;
            margin: 3rem 0;
        }
        
        .terms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .term-item {
            padding: 1.5rem;
            background: var(--bg);
            border-radius: 8px;
            border: 1px solid rgba(15, 31, 51, 0.1);
        }
        
        .term-item h3 {
            margin-bottom: 0.5rem;
        }
        
        .process-timeline {
            position: relative;
            padding: 2rem 0;
            margin: 3rem 0;
        }
        
        .timeline-item {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
            align-items: flex-start;
        }
        
        .timeline-number {
            background: var(--navy);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }
        
        .timeline-content h3 {
            margin-bottom: 0.5rem;
        }
        
        /* CTA Section */
        .guarantee-cta {
            background: var(--navy);
            color: white;
            padding: 4rem;
            border-radius: 24px;
            text-align: center;
            margin: 4rem 0;
        }
        
        .guarantee-cta h2 {
            color: white;
            margin-bottom: 1rem;
        }
        
        .guarantee-cta .directors-only {
            background: white;
            color: var(--navy);
            padding: 1rem 2rem;
            display: inline-block;
            margin-top: 2rem;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .guarantee-cta .directors-only:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
        }
        
        /* Whisper animations now in global site.css */
        .whisper-delay-1 { animation-delay: 0.5s; }
        .whisper-delay-2 { animation-delay: 1s; }
        
        /* Trust signals */
        .trust-signals {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }
        
        .trust-item {
            text-align: center;
        }
        
        .trust-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--navy);
            display: block;
        }
        
        .trust-label {
            font-size: 0.875rem;
            color: var(--text-light);
        }
        
        /* Mobile responsive */
        @media (max-width: 768px) {
            .guarantee-card { padding: 2rem 1.5rem; }
            .terms-section { padding: 2rem 1rem; }
            .timeline-item { flex-direction: column; gap: 1rem; }
            .trust-signals { gap: 2rem; }
            .guarantee-cta { padding: 3rem 1.5rem; }
        }