        :root {
            /* Brand Identity Colors */
            --brand-navy: #002D72;
            --brand-azure: #0077C8;
            --brand-sky: #4BBBEB;
            --brand-orange: #FF8C00; /* Safety Orange for CTAs */
            --brand-white: #FFFFFF;
            --brand-light-bg: #F0F7FC; /* Very light azure for backgrounds */
            
            /* Official Brand Gradient */
            --brand-gradient: linear-gradient(to bottom, var(--brand-azure), var(--brand-navy));
            
            /* Pico Overrides & Design Tokens */
            --primary: var(--brand-azure);
            --primary-hover: var(--brand-navy);
            --secondary: var(--brand-light-bg);
            --background: var(--brand-white);
            --text-main: #1a1a1a;
            
            --font-family: 'Inter', system-ui, -apple-system, sans-serif;
            --headings-font-family: 'Montserrat', sans-serif;
            --background-color: var(--background);
            --color: var(--text-main);
            --primary-focus: rgba(0, 119, 200, 0.125);
            --spacing: 1rem;
        }

        body {
            font-size: 16px;
            line-height: 1.5;
            color: var(--text-main);
            background-color: var(--background);
            font-family: var(--font-family);
        }

        h1, h2, h3, h4 {
            color: var(--brand-navy);
            font-weight: 700;
            font-family: var(--headings-font-family);
        }

        /* Icon Helper */
        .icon {
            width: 1.25em;
            height: 1.25em;
            vertical-align: middle;
            fill: none;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            display: inline-block;
        }

        .icon-fill {
            fill: currentColor;
            stroke: none;
        }

        /* Layout & Sections */
        header.site-header {
            margin-bottom: 0 !important;
            padding: 1.5rem 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-logo {
            max-height: 120px;
            width: auto;
            position: absolute;
            top: -10px; /* Floating slightly above/below the header line */
            left: -75px;
            z-index: 50;
        }

        /* Create space for the absolute logo so it doesn't overlap text on mobile */
        .site-header {
            position: relative;
            min-height: 90px;
        }

        .nav-links {
            margin-left: 220px; /* Increased offset for the even larger logo */
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--brand-navy);
            font-weight: 600;
            font-family: var(--headings-font-family);
            font-size: 1.1rem;
        }

        .nav-links a:hover {
            color: var(--brand-azure);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
                margin-left: 0;
                margin-top: 1rem;
                width: 100%;
                order: 3;
            }
            .nav-links a {
                font-size: 0.9rem;
            }
            .header-logo {
                max-height: 100px; /* Slightly smaller for mobile screens but still prominent */
                position: relative;
                top: 0;
                left: 0; /* Reset left position for mobile centering */
                margin-bottom: 0.5rem;
                order: 1;
            }
            .site-header {
                justify-content: center;
                flex-direction: column;
                gap: 0;
                padding-top: 1.5rem;
                min-height: auto;
            }
            .site-header .pill-button {
                order: 2;
                width: 100%;
                max-width: 200px;
            }
            
            .calculator-card {
                padding: 1.5rem;
            }
            .calculator-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .calculator-divider {
                border-left: none;
                border-top: 2px solid rgba(0,45,114,0.1);
                padding-top: 1.5rem;
            }
        }

        /* Pill Buttons */
        .pill-button {
            background: var(--brand-navy);
            color: var(--brand-white);
            border: none;
            border-radius: 50px;
            padding: 0.75rem 2rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-family: var(--headings-font-family);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.9rem;
        }

        .pill-button:hover {
            background: var(--brand-azure);
            color: var(--brand-white);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,45,114,0.2);
        }

        main {
            margin-top: 0 !important;
            padding-top: 0 !important;
        }

        .section-padding {
            padding: 4rem 0;
        }

        .section-light-bg {
            background-color: var(--brand-light-bg);
        }

        .section-border-top { border-top: 1px solid #e1e8ed; }
        .section-border-bottom { border-bottom: 1px solid #e1e8ed; }

        /* Hero Section */
        .hero {
            margin-top: 0 !important;
            padding: 4rem 0 2rem;
            background: linear-gradient(rgba(248, 251, 254, 0.75), rgba(248, 251, 254, 0.75)), url('bg.webp?v=4.0');
            background-size: cover;
            background-position: center;
            background-attachment: fixed; /* Optional: creates a parallax-like effect */
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 50vh; /* Reduced from 80vh */
        }

        .hero-centered {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero h1 {
            font-size: 3.5rem; /* Reduced from 5rem */
            line-height: 1.1;
            margin-bottom: 1rem;
            text-transform: uppercase;
            font-weight: 900;
            color: var(--brand-navy);
            letter-spacing: -1px;
        }

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

        .hero-subhead {
            font-size: 1.1rem;
            color: var(--brand-navy);
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .hero-actions {
            display: flex;
            flex-direction: row; /* Horizontal on desktop */
            gap: 1rem;
            width: 100%;
            max-width: 500px;
            margin-bottom: 2rem;
        }

        @media (max-width: 768px) {
            .hero-actions {
                flex-direction: column;
                max-width: 300px;
            }
        }

        .hero-actions .pill-button {
            width: 100%;
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        .hero-carousel-container {
            width: 100%;
            max-width: 1100px;
            margin-top: 2rem;
            padding: 1.5rem 1rem;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border-radius: 12px;
            border: 1px solid rgba(0, 45, 114, 0.1);
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }

        .hero-carousel-track {
            display: flex;
            transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-carousel-item {
            flex: 0 0 100%;
            min-width: 100%;
            padding: 0 1rem;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
        }

        .hero-carousel-text {
            font-size: 0.95rem;
            color: var(--brand-navy);
            font-style: italic;
            font-weight: 500;
            line-height: 1.4;
            max-width: 500px;
        }

        .hero-carousel-author {
            font-size: 0.8rem;
            font-weight: 700;
            color: var(--brand-azure);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Testimonials Section Styles */
        button.cta, a.cta, .button.primary {
            background: var(--brand-orange);
            border: none;
            color: var(--brand-navy); /* High contrast Navy on Orange (7.5:1) */
            font-weight: 700;
            transition: all 0.2s ease;
            min-height: 48px; /* Mobile touch target (WCAG recommends 44px) */
            padding: 0.75rem 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(255,140,0,0.3);
            text-decoration: none;
            border-radius: 8px;
        }

        button.cta:hover, a.cta:hover, .button.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(255,140,0,0.4);
            filter: brightness(1.1);
            background: var(--brand-orange);
            color: var(--brand-navy);
        }

        button.cta:focus-visible, a.cta:focus-visible, .button.primary:focus-visible, .button.outline:focus-visible, .pill-button:focus-visible, input:focus-visible, select:focus-visible {
            outline: 3px solid var(--brand-orange);
            outline-offset: 2px;
            box-shadow: 0 0 0 6px rgba(255, 140, 0, 0.3);
        }

        /* Outline Buttons (Tier 1 & 3) */
        .button.outline {
            background: transparent;
            border: 2px solid var(--brand-azure);
            color: var(--brand-azure);
            font-weight: 700;
            transition: all 0.2s ease;
            min-height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            border-radius: 8px;
        }

        .button.outline:hover {
            background: var(--brand-azure);
            color: var(--brand-white) !important; /* Force visibility on hover */
            transform: translateY(-2px);
            text-decoration: none;
        }

        /* Accessibility Utilities */
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        input, select {
            min-height: 48px; /* Mobile touch target */
        }

        small {
            font-size: 0.875rem;
            color: var(--brand-navy); /* Ensure accessible contrast for metadata */
            font-weight: 500;
        }

        /* Badge Bar */
        .badge-bar {
            padding: 1.5rem 0;
            background: #fff;
            border-bottom: 1px solid #f1f1f1;
        }

        .badge-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 1.5rem;
        }

        .badge-item {
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--brand-navy);
        }

        /* Material Toggle (Segmented Control) */
        .material-toggle-container {
            display: flex;
            justify-content: center;
            margin: 2rem 0 3rem;
        }

        .material-toggle {
            display: inline-flex;
            align-items: center;
            background: var(--brand-light-bg);
            padding: 0.35rem;
            border-radius: 50px;
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
            border: 1px solid rgba(0,45,114,0.1);
        }

        .material-btn {
            border: none;
            background: transparent;
            padding: 0.75rem 1.5rem;
            border-radius: 50px;
            font-weight: 700;
            color: var(--brand-navy);
            cursor: pointer;
            transition: all 0.2s ease;
            font-family: var(--headings-font-family);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            line-height: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .material-btn.active {
            background: var(--brand-navy);
            color: white;
            box-shadow: 0 4px 10px rgba(0,45,114,0.2);
        }

        .material-btn:hover:not(.active) {
            background: rgba(0,45,114,0.05);
        }

        /* Price Transition Animation */
        .price-update {
            animation: pricePop 0.3s ease-out;
        }

        @keyframes pricePop {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); color: var(--brand-orange); }
            100% { transform: scale(1); }
        }

        /* Pricing Table */
        .pricing-table {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 0;
            border: 1px solid #bdbdbd;
            border-radius: 8px;
            overflow: hidden;
            background: #fff;
        }

        .tier-column {
            display: flex;
            flex-direction: column;
            border-right: 1px solid #bdbdbd;
            background: #fff;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            z-index: 1;
        }

        .tier-column:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0,45,114,0.15);
            z-index: 10;
            border-color: transparent;
            border-radius: 8px;
        }

        .tier-column:last-child {
            border-right: none;
        }

        .tier-cell {
            padding: 1.25rem 1rem;
            border-bottom: 1px solid #bdbdbd; /* Match Excel border color */
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%; /* Force fill */
        }

        .tier-header {
            color: white;
            padding: 1.5rem 1rem;
            height: 160px; /* Fixed height for exact alignment */
            border-bottom: 2px solid #bdbdbd;
            background-color: var(--brand-navy); /* Fallback */
        }

        .tier-2-header { background-color: var(--brand-azure); } 
        .tier-3-header { background: var(--brand-gradient); } 

        .tier-header h3 { color: white !important; margin: 0; font-size: 1.75rem; }
        .tier-header small { color: rgba(255,255,255,0.9) !important; font-weight: 700; letter-spacing: 1px; }
        .tier-header p { color: #ffffff !important; font-size: 0.95rem; margin: 0.75rem 0 0; font-style: italic; line-height: 1.3; }

        .price-cell {
            background-color: #FAFAFA;
            height: 120px; /* Fixed height for exact alignment */
        }

        .price-value {
            font-size: 1.5rem;
            font-weight: 700;
        }

        .price-unit {
            font-size: 0.9rem;
        }

        .label-row {
            background-color: #ECEFF1; /* Spreadsheet Label BG */
            font-weight: 800;
            font-size: 0.75rem;
            color: #455A64;
            text-transform: uppercase;
            padding: 0.75rem;
            border-bottom: 1px solid #bdbdbd;
            text-align: center;
        }

        .popular-badge {
            font-size: 0.75rem;
            font-weight: 800;
            margin-top: 0.5rem;
            color: #fff;
        }

        .features-cell {
            padding: 1.5rem;
            height: 320px; /* Fixed height for perfect alignment */
            background-color: #FFFFFF;
            text-align: left;
        }

        .features-cell ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .features-cell li {
            margin-bottom: 0.75rem;
            font-size: 0.85rem;
            border-bottom: 1px solid #f0f0f0;
            padding-bottom: 0.25rem;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
        }

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

        .best-for-cell {
            background-color: #FAFAFA;
            height: 140px; /* Fixed height for exact alignment */
            font-size: 0.9rem;
            font-weight: 500;
            line-height: 1.6;
        }

        .tagline-cell {
            background-color: #fff;
            height: 100px; /* Fixed height for perfect alignment */
            font-style: italic;
            font-size: 0.85rem;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1rem;
            border-bottom: 1px solid #bdbdbd;
        }

        .tier-footer {
            padding: 2rem 1.5rem;
            border-bottom: none;
            background-color: #ECEFF1;
            height: 110px; /* Aligns buttons */
        }

        /* Calculator Section */
        .calculator-card {
            max-width: 850px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,45,114,0.08);
            border: 1px solid var(--brand-light-bg);
        }

        /* Range Slider Styling */
        .range-container {
            margin-bottom: 1.5rem;
        }

        input[type="range"] {
            width: 100%;
            height: 8px;
            background: #e1e8ed;
            border-radius: 5px;
            outline: none;
            -webkit-appearance: none;
            margin: 1rem 0;
        }

        input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            background: var(--brand-azure);
            cursor: pointer;
            border-radius: 50%;
            border: 3px solid white;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        }

        .input-group {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .min-badge {
            display: inline-block;
            background: #fff3cd;
            color: #856404;
            font-size: 0.65rem;
            padding: 2px 6px;
            border-radius: 4px;
            margin-top: 0.5rem;
            font-weight: 700;
            border: 1px solid #ffeeba;
            visibility: hidden;
        }

        .min-badge.active {
            visibility: visible;
        }

        .input-group input { 
        ...
            border: 2px solid #e1e8ed;
            border-radius: 8px;
            padding: 1rem;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--brand-navy);
            transition: border-color 0.2s;
        }

        .input-group input:focus {
            border-color: var(--brand-azure);
            outline: none;
        }

        .calculator-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-top: 1.5rem;
            text-align: center;
            background: var(--brand-light-bg);
            padding: 1.5rem;
            border-radius: 12px;
        }

        .calculator-divider {
            border-left: 2px solid rgba(0,45,114,0.1);
        }

        .calculator-price {
            font-size: 1.60rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .calculator-price.primary { color: var(--brand-orange); }
        .calculator-price.navy { color: var(--brand-navy); }

        .calculator-footer-note {
            text-align: center;
            margin-top: 1.5rem;
            font-size: 0.85rem;
            color: var(--brand-navy);
            opacity: 0.7;
            font-weight: 500;
        }



        /* 3-Column Comparison Slider Styles */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        @media (max-width: 1024px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        .comparison-container {
            position: relative;
            width: 100%;
            aspect-ratio: 4/5;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            background: #eee;
            cursor: ew-resize;
            user-select: none;
        }

        .comparison-img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .img-before {
            z-index: 1;
        }

        .img-after {
            z-index: 2;
            width: 50%; /* Initial state */
        }

        .slider-handle {
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: white;
            z-index: 10;
            pointer-events: none;
            box-shadow: 0 0 10px rgba(0,0,0,0.3);
        }

        .slider-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-navy);
            box-shadow: 0 2px 6px rgba(0,0,0,0.3);
            font-weight: 900;
        }

        .comparison-label {
            position: absolute;
            bottom: 1rem;
            padding: 0.25rem 0.75rem;
            background: rgba(0,0,0,0.5);
            color: white;
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            border-radius: 4px;
            pointer-events: none;
            z-index: 5;
        }

        .label-before { left: 1rem; }
        .label-after { right: 1rem; }

        .material-caption {
            margin-top: 1rem;
            font-weight: 700;
            text-align: center;
            color: var(--brand-navy);
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 6rem 0;
            background: var(--brand-light-bg);
            margin-bottom: 0;
        }

        .testimonials-grid {
            columns: 3 320px;
            column-gap: 2.5rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            display: inline-block;
            width: 100%;
            margin-bottom: 2.5rem;
            break-inside: avoid;
            font-style: italic;
            font-size: 1.1rem;
            padding: 2.5rem;
            background: #fff;
            border-radius: 12px;
            border-top: 4px solid var(--brand-sky);
            box-shadow: 0 10px 25px rgba(0,45,114,0.05);
            position: relative;
        }

        .testimonial-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .testimonial-card .google-link {
            position: absolute;
            top: 1rem;
            right: 1rem;
            color: #4285F4;
            opacity: 0.6;
            transition: opacity 0.2s;
        }

        .testimonial-card .google-link:hover {
            opacity: 1;
        }

        .verified-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 0.7rem;
            font-weight: 700;
            color: #34A853;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-style: normal;
        }

        .stars {
            display: inline-flex;
            gap: 2px;
        }

        /* FAQ */
        details {
            border-bottom: 1px solid var(--brand-light-bg);
            padding: 1rem 0;
        }

        details summary {
            font-weight: 600;
            color: var(--brand-navy);
        }

        /* Footer */
        footer {
            padding: 5rem 0;
            background: var(--brand-navy);
            color: var(--brand-white);
            margin-top: 4rem;
        }

        footer h3, footer p, footer strong {
            color: var(--brand-white);
        }

        footer a:not(.cta) {
            color: var(--brand-sky);
            text-decoration: none;
        }

        footer a:not(.cta):hover {
            color: var(--brand-white);
            text-decoration: underline;
        }

        .footer-content {
            text-align: center;
        }

        .service-areas-container {
            margin: 2rem 0;
            padding: 2rem 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .service-areas-title {
            color: white;
            margin-bottom: 1rem;
        }

        .service-areas-list {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        .address-block {
            font-style: normal;
            margin: 2rem 0;
        }

        .footer-copyright {
            margin-top: 3rem;
            font-size: 0.8rem;
            opacity: 0.8;
        }

        /* Mobile Menu Styling */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--brand-navy);
            transition: 0.3s;
        }

        @media (max-width: 768px) {
            .menu-toggle { display: flex; }
            
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: white;
                flex-direction: column;
                justify-content: center;
                transition: 0.3s;
                box-shadow: -10px 0 30px rgba(0,0,0,0.1);
                z-index: 1000;
                margin: 0 !important;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links a {
                font-size: 1.5rem;
                padding: 1.5rem;
                width: 100%;
                text-align: center;
            }

            .header-logo {
                max-height: 80px;
                order: -1;
            }
        }

        /* Sticky Footer Bar */
        .mobile-sticky-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: white;
            display: none;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            padding: 12px;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
            z-index: 999;
        }

        @media (max-width: 768px) {
            .mobile-sticky-bar { display: grid; }
            body { padding-bottom: 80px; } /* Space for the bar */
        }

        .mobile-sticky-bar .button {
            margin: 0;
            font-size: 0.9rem;
            padding: 0.8rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .desktop-only { display: block; }
        .mobile-only { display: none; }

        @media (max-width: 768px) {
            .desktop-only { display: none; }
            .mobile-only { display: block; }
        }

        /* Utils */
        .text-center { text-align: center; }
        .mb-2 { margin-bottom: 2rem; }
        .accent-text { color: var(--brand-azure); }
        .full-width { width: 100%; }
        .text-muted-italic { color: #666; font-style: italic; }
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 2rem; }
