        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 95px; /* Account for fixed header height (93px) + minimal buffer */
        }
        
        body {
            font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
            font-size: 18px;
            line-height: 23.4px;
            letter-spacing: -0.18px;
            color: #015C65;
            background: #F7F5EE;
            overflow-y: scroll;
        }
        
        h1, h2, .main-heading {
            font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
            font-size: 33px;
            font-weight: 400;
            line-height: 42.9px;
            letter-spacing: -0.99px;
            color: #015C65;
            margin-bottom: 0;
        }
        
        h3 {
            font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
            font-size: 20px;
            font-weight: 400;
            line-height: 26px;
            letter-spacing: -0.2px;
            color: #015C65;
            margin-bottom: 0;
        }
        
        h4 {
            font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
            font-size: 33px;
            font-weight: 400;
            line-height: 42.9px;
            letter-spacing: -0.99px;
            color: #015C65;
            margin: 0;
            text-align: start;
        }

        h5 {
            font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 23.4px;
            letter-spacing: -0.18px;
            color: #015C65;
            margin: 0;
            text-align: start;
        }
        
        p {
            margin: 0;
        }
        
        .small-caps {
            font-size: 18px;
            font-weight: 400;
            line-height: 32.4px;
            letter-spacing: -0.18px;
            color: #015C65;
            margin-bottom: 10px;
        }
        
        /* Button styles migrated to Tailwind classes */
        
        header {
            position: sticky;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: none;
            z-index: 52;
            background-color: rgb(247, 245, 238);
            height: 93px;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .logo-section img {
            width: 85px;
            height: 85px;
            border-radius: 50%;
        }
        
        .logo-section span {
            display: none;
        }
        
        nav {
            display: flex;
            gap: 0px;
            margin-left: 20px;
        }
        
        nav a {
            color: rgb(0, 0, 238);
            text-decoration: none;
            font-size: 17px;
            font-weight: 700;
            font-family: 'Open Sans', sans-serif;
            padding: 0px 10px;
            transition: opacity 0.3s;
        }
        
        nav a:hover {
            opacity: 0.7;
        }
        
        /* Get Started button hover styles - ALL buttons */
        a[href="/app/login"] {
            transition: background-color 0.4s ease, border-color 0.4s ease;
        }
        
        a[href="/app/login"]:hover {
            background-color: rgb(247, 245, 238) !important;
            color: rgb(0, 0, 0) !important;
            border: 1px solid rgb(66, 149, 174) !important;
        }
        
        /* Button hover styles for primary CTA buttons (teal background) */
        .btn-cta,
        .btn-header-cta,
        .btn-hero-cta,
        .btn-how-it-works {
            transition: all 0.3s ease !important;
        }
        
        .btn-cta:hover,
        .btn-header-cta:hover,
        .btn-how-it-works:hover {
            background-color: rgb(0, 86, 179) !important;
            border-color: rgb(0, 86, 179) !important;
        }

        /* Outline button hover - fill the background with border color */
        .btn-hero-cta:hover {
            background-color: rgb(52, 130, 156) !important;
            border-color: rgb(52, 130, 156) !important;
            color: rgb(247, 245, 238) !important;
        }
        
        /* Button hover styles for secondary CTA button (white background in teal section) */
        .btn-cta-section {
            transition: all 0.3s ease !important;
        }
        
        .btn-cta-section:hover {
            background-color: rgb(62, 157, 173) !important;
            color: white !important;
            border-color: rgb(62, 157, 173) !important;
        }
        
        /* Pricing card button hover styles */
        #pricing a[href^="/"] {
            transition: all 0.3s ease !important;
        }
        
        #pricing a[href^="/"]:hover {
            background-color: rgb(0, 86, 179) !important;
            border-color: rgb(0, 86, 179) !important;
            transform: scale(1.05);
        }
        
        section {
            background: #F7F5EE;
        }
        
        section.white-bg {
            background: white;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Hero section styles migrated to Tailwind classes */
        
        .bg-light {
            background: #F7F5EE;
        }
        
        .bg-teal {
            background: #F7F5EE;
        }
        
        .text-center {
            text-align: center;
        }
        
        /* Feature cards and How It Works styles migrated to Tailwind classes */
        
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
            margin-top: 50px;
        }
        
        .testimonial-section .grid-3 {
            gap: 0;
        }
        
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
        }
        
        .testimonial-section {
            background: #9BC4CB;
        }
        
        .testimonial-card {
            padding: 35px;
            position: relative;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .testimonial-card:last-child {
            border-right: none;
        }
        
        .testimonial-card::before {
            content: '\201C';
            font-size: 80px;
            color: rgba(255, 255, 255, 0.5);
            display: block;
            line-height: 1;
            margin-bottom: 20px;
        }
        
        .testimonial-card p {
            color: #015C65;
            font-size: 18px;
            line-height: 32.4px;
            margin-bottom: 20px;
        }
        
        .testimonial-card .author {
            font-weight: 600;
            font-style: normal;
        }
        
        .profiles-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-top: 60px;
        }
        
        .profile-column {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        
        .profile-card {
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }
        
        .profile-card img {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }
        
        .profile-card-content {
            flex: 1;
        }
        
        .profile-cta {
            text-align: center;
            padding: 40px 20px;
        }
        
        .profile-cta p {
            margin-bottom: 30px;
            font-size: 16px;
            line-height: 1.6;
        }
        
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            padding: 35px 30px;
            border-radius: 8px;
            transition: all 0.3s;
        }
        
        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        
        .faq-item h3 {
            margin-bottom: 15px;
            font-size: 18px;
        }
        
        .faq-item p {
            font-size: 15px;
            line-height: 1.6;
        }
        
        .cta-section {
            background: #3E9DAD;
            color: white;
            text-align: center;
        }
        
        .cta-section h2,
        .cta-section p {
            color: white;
        }
        
        footer {
            background: #1a1a1a;
            color: #aaa;
            padding: 40px;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .footer-top a {
            color: white;
            text-decoration: none;
            font-size: 18px;
            font-weight: 600;
        }
        
        .social-links {
            display: flex;
            gap: 20px;
        }
        
        .social-links img {
            width: 24px;
            height: 24px;
            opacity: 0.7;
            transition: opacity 0.3s;
        }
        
        .social-links img:hover {
            opacity: 1;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .footer-bottom {
            text-align: center;
            font-size: 12px;
            color: #666;
        }
        
        /* Hide desktop Get Started button on mobile */
        @media (max-width: 767px) {
            header a[href="/app/login"] {
                display: none !important;
            }
        }
        
        /* Hide hamburger and show desktop nav on desktop */
        @media (min-width: 769px) {
            #mobile-menu-btn {
                display: none !important;
            }
        }
        
        @media (max-width: 768px) {
            header {
                padding: 15px 20px;
            }
            
            header nav {
                display: none;
            }
            
            #mobile-menu nav {
                display: flex !important;
            }
            
            .hero {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .grid-4,
            .grid-3,
            .grid-2 {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .profiles-section {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            h1, h2, .main-heading {
                font-size: 28px;
                line-height: 36px;
            }
        }

        /* Utility classes for JavaScript toggle */
        .hidden {
            display: none !important;
        }

        .flex {
            display: flex !important;
        }

        /* Keyframes for spinner animation */
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Pricing Section Styles */
        #pricing {
            /* Uses global scroll-padding-top of 95px */
        }

        #pricing .small-caps {
            font-family: avenir-lt-w01_85-heavy1475544, sans-serif;
            font-size: 14px;
            letter-spacing: 2px;
            color: #015C65;
            text-transform: uppercase;
            margin-bottom: 10px;
        }

        #pricing h2 {
            font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
            font-size: 33px;
            font-weight: 400;
            color: #015C65;
            line-height: 42.9px;
            margin-bottom: 15px;
        }

        #pricing h4 {
            font-size: 18px;
            color: #015C65;
            font-weight: 400;
            line-height: 27px;
            margin-bottom: 40px;
        }

        /* Responsive grid for pricing cards */
        @media (max-width: 1200px) {
            #pricing > div:last-child {
                grid-template-columns: repeat(2, 1fr) !important;
            }
        }

        @media (max-width: 768px) {
            #pricing > div:last-child {
                grid-template-columns: 1fr !important;
            }
            
            #pricing {
                padding: 40px 20px !important;
            }
        }

        /* Card hover effects */
        #pricing > div > div {
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        #pricing > div > div:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(66, 149, 174, 0.2) !important;
        }

        /* CTA button hover */
        #pricing a[href^="/"] {
            transition: all 0.3s ease;
        }

        #pricing a[href^="/"]:hover {
            background: #015C65 !important;
            transform: scale(1.05);
        }

        /* Feature list styling */
        #pricing ul {
            font-size: 14px;
            color: #242323;
            line-height: 1.6;
        }

        #pricing ul li {
            font-family: "avenir-lt-w01_85-heavy1475544", sans-serif;
        }
