    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: #2d3748;
            background: #ffffff;
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo-link {
            text-decoration: none;
            display: inline-block;
            transition: border-color 0.3s ease;
            border-bottom: 3px solid transparent;
            margin-left: 20px;
            padding-right: 40px;
        }
        
        .logo-link:hover {
            border-bottom-color: #69be28; /* Your brand green */
        }

        .logo-link:hover .logo {
            transition: opacity 0.3s ease;
            /* filter: brightness(1.1) drop-shadow(0 0 8px rgba(105, 190, 40, 0.4)); */
            border-bottom-color: #69be28; /* Your brand green */
        }

        .logo {
            height: 50px;
            width: auto;
            padding-left: 1.5rem;
            transform: scale(1.5);
            transition: all 0.3s ease;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #2b6cb0;
        }

        /* Active navigation state */
        .nav-links a.active {
            color: #3182ce;
            font-weight: 600;
            position: relative;
        }
        
        /* Optional: Add underline effect for active state */
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background: #3182ce;
            border-radius: 1px;
        }
        
        /* Hover effect that works with active state */
        .nav-links a:hover {
            color: #3182ce;
            transition: color 0.3s ease;
        }
        
        .nav-links a.active:hover {
            color: #2c5aa0; /* Slightly darker on hover when active */
        }

        .signup-link {
            background: linear-gradient(45deg, #69be28, #5aa623) !important;
            color: white !important;
            padding: 0.5rem 1rem !important;
            border-radius: 25px !important;
            transition: all 0.3s ease !important;
        }

        .signup-link:hover {
            color: white !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(105, 190, 40, 0.4);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
	    padding: 40px 0 40px 0;
            align-items: center;
            justify-content: center;
            text-align: center;
            background: linear-gradient(135deg, #002244 0%, #69be28 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            padding-top: 2rem;
            max-width: 1000px;
            padding: 2rem;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            animation: slideInFromTop 1s ease-out;
            font-family: 'Poppins', sans-serif;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
            animation: slideInFromBottom 1s ease-out 0.3s both;
        }

        .legal-validation-callout {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid #ffd700;
            border-radius: 8px;
            padding: 1rem;
            margin: 2rem 0;
            text-align: center;
        }

        .legal-validation-callout p {
            margin: 0;
            font-size: 1.1rem;
            color: white;
        }

        .legal-validation-callout a {
            color: #ffd700;
            text-decoration: none;
            font-weight: bold;
        }

        .legal-validation-callout a:hover {
            text-decoration: underline;
        }

        .practice-power-section {
            margin: 2rem 0;
            text-align: left;
            max-width: 600px;
            margin: 2rem auto;
        }

        .practice-power-section h3 {
            color: white;
            margin-bottom: 1rem;
            text-align: center;
        }

        .power-benefits {
            text-align: left;
            padding-left: 1.5rem;
            margin: 1rem 0;
            list-style: none;
        }

        .power-benefits li {
            margin-bottom: 0.5rem;
            text-align: left;
            position: relative;
            padding-left: 2.5rem;
            color: white;
        }

        .power-benefits li::before {
            content: "\1F4B0";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 20px;
            background-image: url('img/money_bag.png');
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        .call-out {
            font-weight: 600;
            font-size: 1.2rem;
            margin: 2rem 0;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: linear-gradient(45deg, #69be28, #5aa623);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 8px 25px rgba(105, 190, 40, 0.4);
            transition: all 0.3s ease;
            animation: slideInFromBottom 1s ease-out 0.6s both;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(105, 190, 40, 0.6);
        }

        /* Floating Elements */
        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
            animation: float 6s ease-in-out infinite;
            color: white;
            font-family: 'Poppins', sans-serif;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .shape:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 80px;
            height: 80px;
            font-size: 60px;
            animation-delay: 0s;
        }
        
        .shape:nth-child(2) {
            top: 70%;
            right: 10%;
            width: 60px;
            height: 60px;
            font-size: 45px;
            animation-delay: 2s;
        }
        
        .shape:nth-child(3) {
            top: 40%;
            left: 80%;
            width: 40px;
            height: 40px;
            font-size: 30px;
            animation-delay: 4s;
        }

        .shape:nth-child(4) {
            top: 20%;
            right: 25%;
            font-size: 50px;
            animation-delay: 1s;
        }
        
        .shape:nth-child(5) {
            top: 90%;
            left: 25%;
            font-size: 50px;
            animation-delay: 3s;
        }
        
        .shape:nth-child(6) {
            top: 90%;
            left: 65%;
            font-size: 50px;
            animation-delay: 3s;
        }


        @keyframes float {
            0% {
                transform: translateY(0px) rotate(0deg);
            }
            33% {
                transform: translateY(-15px) rotate(15deg);
            }
            66% {
                transform: translateY(-5px) rotate(-10deg);
            }
            100% {
                transform: translateY(0px) rotate(0deg);
            }
        }

        /* Animations */
        @keyframes slideInFromTop {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInFromBottom {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

* Add smooth animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 1000px; /* Large enough for any content */
    }
}



        /* Section Layouts */
        .section {
            padding: 80px 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a202c;
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #4a5568;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Legal Validation */
        .legal-section {
            background: #f7fafc;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }

        .legal-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .legal-card {
            background: #fff;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .legal-card h3 {
            color: #2d3748;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
            font-weight: 600;
        }

        .court-quote {
            background: #f7fafc;
            border-left: 4px solid #3182ce;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }

        .court-quote blockquote {
            font-style: italic;
            color: #2d3748;
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .court-quote cite {
            font-size: 0.9rem;
            color: #718096;
            font-style: normal;
        }

        .court-summary {
            background: linear-gradient(135deg, #e6f3ff 0%, #f0f8ff 100%);
            border: 2px solid #3182ce;
            border-radius: 10px;
            padding: 1.25rem;
            margin-top: 1.5rem;
            color: #1a365d;
            font-weight: 700;
            text-align: center;
            box-shadow: 0 2px 8px rgba(49, 130, 206, 0.15);
        }


        /* Legal Highlights - Add this after the .court-summary section */
        .legal-highlight {
            background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 215, 0, 0.2));
            color: #b8860b;
            font-weight: 700;
            padding: 2px 4px;
            border-radius: 3px;
            box-shadow: 0 1px 3px rgba(255, 215, 0, 0.2);
        }

        /* Solution Steps */
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .step-card {
            background: #fff;
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: all 0.3s ease;
        }

        .step-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .step-number {
            background: #3182ce;
            color: white;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.3rem;
            margin: 0 auto 1.5rem;
        }

        .step-card h3 {
            color: #2d3748;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .step-card p {
            color: #4a5568;
            line-height: 1.6;
        }

        /* PowerRate Section */
        .powerrate-section {
            background: linear-gradient(135deg, #002244 0%, #69be28 100%);
            color: white;
        }

        .powerrate-section .section-header h2 {
            color: white;
        }

        .powerrate-section .section-header p {
            color: #ffd700;
            font-weight: 600;
        }

        .powerrate-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0, 34, 68, 0.2);
            backdrop-filter: blur(10px);
        }

        .powerrate-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }

        .powerrate-header h3 {
            font-size: 1.8rem;
            margin: 0;
            color: #ffd700;
            position: relative;
            padding-left: 2.5rem;
        }

        .powerrate-header h3::before {
            content: "\1F6A8";
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
        }

        .pricing-options {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            align-items: flex-end;
        }

        .addon-price {
            font-size: 1.5rem;
            font-weight: 700;
            color: #ffd700;
        }

        .addon-price.unbundled {
            font-size: 1.2rem;
            font-weight: 500;
            color: #cbd5e0;
            text-decoration: line-through;
        }

        .powerrate-description p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            text-align: center;
            color: white;
        }

        .powerrate-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .feature-column h4 {
            color: #ffd700;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .feature-column ul {
            list-style: none;
            padding: 0;
        }

        .feature-column1 li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
            color: white;
            list-style: none;
        }

        .feature-column2 li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 1.5rem;
            color: white;
            list-style: none;
        }

        .feature-column1 li::before {
            content: "\1F3AF";
            position: absolute;
            left: 0;
            color: #ffd700;
            font-weight: bold;
        }

        .feature-column2 li::before {
            content: "\26A1";
            position: absolute;
            left: 0;
            color: #ffd700;
            font-weight: bold;
        }

        .powerrate-cta {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
        }

        .powerrate-cta label {
            font-size: 1.1rem;
            font-weight: 600;
            color: white;
        }

/*
        .powerrate-highlight {
            background: white;
            color: #1b4332;
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .powerrate-highlight p {
            margin: 0;
            font-weight: 600;
            color: #1b4332;
        }
*/

        .powerrate-highlight {
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid #ffd700;
            border-radius: 0 8px 8px 0;
            padding: 1rem;
            margin: 1rem auto;
            text-align: center;
	    max-width: 80%;
        }
        
        .powerrate-highlight p {
            margin: 0;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }
      
        .powerrate-highlight strong {
            color: white;
            font-weight: 700;
        }
        

        /* Names Section */
        .names-section {
            background: linear-gradient(135deg, #0f4c75 0%, #3282b8 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .names-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.5;
        }
        
        .names-section .section-header {
            position: relative;
            z-index: 2;
        }
        
        .names-section .section-header h2 {
            color: white;
            font-size: 2.8rem;
            margin-bottom: 1rem;
        }
        
        .names-section .section-header p {
            color: #ffd700;
            font-weight: 600;
            font-size: 1.3rem;
        }
        
        .names-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }
        
        .names-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .names-card:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.12);
            border-color: #ffd700;
            box-shadow: 0 15px 40px rgba(255, 215, 0, 0.2);
        }
        
        .names-card h3 {
            color: #ffd700;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            position: relative;
        }
        
        .names-card h3::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background: #ffd700;
        }
        
        .names-card p {
            color: #e2e8f0;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        /* Pricing Section */
        .pricing-section {
            background: #f7fafc;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .pricing-card {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }

        .pricing-card.featured {
            border-color: #3182ce;
            box-shadow: 0 8px 25px rgba(49,130,206,0.15);
        }


        .pricing-simple {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255,255,255,0.3);
        }
        
        .pricing-simple div {
            color: #ffd700;
            font-weight: 600;
            margin: 0.25rem 0;
        }

        .popular-badge {
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #3182ce;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .package-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2d3748;
            margin: 1rem 0;
        }

        .package-price {
            font-size: 2.2rem;
            font-weight: 800;
            color: #3182ce;
            margin-bottom: 1.5rem;
        }

        .price-period {
            font-size: 1rem;
            color: #718096;
            font-weight: 400;
        }

        .features-list {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0;
            text-align: left;
        }

        .features-list li {
            padding: 0.5rem 0;
            color: #4a5568;
            position: relative;
            padding-left: 1.5rem;
            font-size: 0.95rem;
        }

        .features-list li::before {
            content: "\2714";
            position: absolute;
            left: 0;
            color: #3182ce;
            font-weight: 600;
        }

        .pricing-cta {
            width: 70%;
            padding: 0.75rem .75rem;  /* .75rem 1.5rem */
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            text-align: center;
            display: block;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .pricing-cta-primary {
            background: #3182ce;
            color: white;
        }

        .pricing-cta-primary:hover {
            background: #2c5aa0;
        }

        .pricing-cta-secondary {
            background: transparent;
            color: #3182ce;
            border: 1px solid #3182ce;
        }

        .pricing-cta-secondary:hover {
            background: #3182ce;
            color: white;
        }

        /* FAQ Hero Section */
        .faq-hero {
            background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
        }
        
        .faq-subtitle {
            font-size: 1.2em;
            margin: 20px 0 40px;
            opacity: 0.9;
        }
        
        .faq-quick-nav {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 40px;
        }
        
        .faq-nav-button {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.3);
            padding: 12px 24px;
            border-radius: 25px;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .faq-nav-button:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        /* FAQ Sections */
        .faq-section {
            padding: 20px 0;  /* changed from 80px 0   */
            border-bottom: 1px solid #eee;
        }
        
        .faq-section:last-child {
            border-bottom: none;
        }
        
        .faq-section h2 {
            text-align: center;
            margin-bottom: 60px;
            color: #1a365d;
            font-size: 2.5em;
        }
        
        /* Enhanced FAQ Item Styling */
        .faq-item {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        
        .faq-question {
            padding: 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #f8fafc;
            border-radius: 12px 12px 0 0;
        }
        
        .faq-question h4 {
            color: #1a365d;
            font-size: 1.1em;
            margin: 0;
            font-weight: 600;
        }
        
        .faq-answer {
            padding: 25px;
            display: none;
            background: white;
            border-radius: 0 0 12px 12px;
        }
        
        .faq-answer.active {
            display: block;
        }
        
        /* FAQ CTA Section */
        .faq-cta-section {
            background: linear-gradient(135deg, #1a365d 0%, #2d5a87 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .faq-cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        
        .cta-button-secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 15px 30px;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .cta-button-secondary:hover {
            background: white;
            color: #1a365d;
        }
        
        /* Active navigation state */
        .nav-links a.active {
            color: #3182ce;
            font-weight: 600;
        }
        
        /* FAQ Teaser Section */
        .faq-teaser-section {
            background: #f8fafc;
            padding: 80px 0;
        }
        
        .faq-teaser-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
            margin-bottom: 50px;
        }
        
        .faq-teaser-card {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .faq-teaser-card:hover {
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }
        
        .faq-teaser-card h3 {
            color: #1a365d;
            font-size: 1.3em;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .faq-teaser-card p {
            color: #64748b;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .faq-teaser-link {
            color: #3182ce;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: color 0.3s ease;
        }
        
        .faq-teaser-link:hover {
            color: #2c5aa0;
        }
        
        .faq-cta {
            text-align: center;
            margin-top: 40px;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .faq-quick-nav {
                flex-direction: column;
                align-items: center;
            }
            
            .faq-nav-button {
                width: 200px;
                text-align: center;
            }
            
            .faq-cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        
            .faq-teaser-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 40px;
                margin-bottom: 40px;
            }
            
            .faq-teaser-card {
                padding: 25px;
            }
        
        }
        
        
        /* FAQ Section */
        .faq-section {
            background: #fff;
        }

        .faq-grid {
            display: grid;
            /* grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); */
            grid-template-columns: 1fr;
            gap: 10px;  /* reduced from 20px */
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-category {
            background: #f7fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 2rem;
        }

        .faq-category h3 {
            color: #2d3748;
            font-weight: 600;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3182ce;
        }

        /* .faq-item {
            margin-bottom: 1rem;
            border-bottom: 1px solid #e2e8f0;
            padding-bottom: 1rem;
        }  */


.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 8px; /* REDUCED FROM 20px */
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: visible; /* Important: allow content to expand */
}

        .faq-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 10px 10px;  /*  0.5rem 0;  changed from this */
        }

        .faq-question h4 {
            font-weight: 600;
            color: #2d3748;
            font-size: 1rem;
            margin: 0;
        }

        .faq-icon {
            color: #3182ce;
            font-weight: 600;
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

/*
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
*/

.faq-answer {
    padding: 15px 20px 20px 20px;  /* reduced from 25px all around */
    display: none;
    background: white;
    border-radius: 0 0 12px 12px;
    max-height: none; /* Remove any height restrictions */
    overflow: visible; /* Allow content to show */
}

.faq-answer.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding-top: 1rem;
        }

        .faq-answer p {
            color: #4a5568;
            line-height: 1.6;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
        }

        .faq-answer ul {
            margin: 0.75rem 0;
            padding-left: 1.5rem;
        }

        .faq-answer li {
            color: #4a5568;
            margin-bottom: 0.25rem;
            font-size: 0.95rem;
        }

        /* Founder Section */
        .founder-section {
            background: #f7fafc;
        }

        .founder-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .founder-text h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 1.5rem;
        }

        .founder-text p {
            color: #4a5568;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

/*  ORIG
        .founder-highlights {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-left: 4px solid #3182ce;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }

        .founder-highlights p {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }

*/

        .founder-highlights {
            background: #fff;
            border: 1px solid #e2e8f0;
            border-left: 4px solid #3182ce;
            padding: .5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }

        .founder-highlights p {
            font-weight: 600;
            color: #2d3748;
            margin-bottom: 0.5rem;
        }


        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 2000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background-color: #fff;
            margin: 2% auto;
            padding: 0;
            border-radius: 12px;
            width: 90%;
            max-width: 450px;
            max-height: 90vh;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease-out;
            display: flex;
            flex-direction: column;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-header {
            background: linear-gradient(135deg, #002244 0%, #69be28 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 12px 12px 0 0;
            position: relative;
            flex-shrink: 0;
        }

        .modal-header h2 {
            margin: 0;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .close {
            color: white;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            transition: opacity 0.3s ease;
        }

        .close:hover {
            opacity: 0.7;
        }

        .modal-body {
            padding: 2rem;
            overflow-y: auto;
            flex-grow: 1;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #2d3748;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.75rem;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus {
            outline: none;
            border-color: #3182ce;
            box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
        }

        .modal-btn {
            width: 100%;
            padding: 0.75rem;
            background: linear-gradient(45deg, #69be28, #5aa623);
            color: white;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-btn:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(105, 190, 40, 0.4);
        }

        .modal-footer {
            text-align: center;
            padding: 1rem 2rem 2rem;
            color: #718096;
            font-size: 0.9rem;
            flex-shrink: 0;
        }

        .modal-footer a {
            color: #3182ce;
            text-decoration: none;
        }

        .modal-footer a:hover {
            text-decoration: underline;
        }

        .checkbox-group {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .checkbox-group input[type="checkbox"] {
            width: auto;
            margin-top: 0.25rem;
            flex-shrink: 0;
        }

        .checkbox-group label {
            font-size: 0.9rem;
            line-height: 1.4;
            margin-bottom: 0;
        }

        /* Footer Styles */
        .footer {
            background: #1a202c;
            color: #e2e8f0;
            padding: 3rem 0 1rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            color: #ffd700;
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #cbd5e0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: #ffd700;
        }

        .footer-logo-img {
            height: 40px;
            width: auto;
            margin-bottom: 1rem;
            background: white;
            padding: 8px;
            border-radius: 6px;
            transform: scale(1.5);
            margin-left: 2rem;
        }

        .footer-logo p {
            color: #a0aec0;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .footer-bottom {
            border-top: 1px solid #2d3748;
            padding-top: 1.5rem;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: #718096;
            font-size: 0.9rem;
            margin: 0;
        }

        .footer-contact {
            display: flex;
            gap: 2rem;
            font-size: 0.9rem;
        }

        .footer-contact a {
            color: #cbd5e0;
            text-decoration: none;
        }

        .footer-contact a:hover {
            color: #ffd700;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 100px; /* Adjust this until it looks right */
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }

            .nav-links {
                display: none;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .legal-grid,
            .steps-grid,
            .faq-grid {
                grid-template-columns: 1fr;
            }

            .founder-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .powerrate-header {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .powerrate-features {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .modal-content {
                margin: 5% auto;
                width: 95%;
                max-height: 85vh;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 1rem;
            }

            .footer-contact {
                flex-direction: column;
                gap: 0.5rem;
            }

            .names-section .section-header h2 {
                font-size: 2.2rem;
            }
            
            .names-section .section-header p {
                font-size: 1.1rem;
            }
            
            .names-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .names-card {
                padding: 2rem;
            }

           .powerrate-highlight {
            max-width: 95%;
           }
        }

        @media (hover: none) and (pointer: coarse) {
          .logo-link:hover {
           border-bottom-color: transparent;
        }


        .checkbox-container {
            max-height: 200px;
            overflow-y: auto;
            border: 1px solid #e2e8f0;
            border-radius: 6px;
            padding: 0.75rem;
            background: #f7fafc;
        }
        
        .checkbox-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
            padding: 0.25rem;
        }
        
        .checkbox-item:last-child {
            margin-bottom: 0;
        }
        
        .checkbox-item input[type="checkbox"] {
            width: auto;
            margin: 0;
            flex-shrink: 0;
        }
        
        .checkbox-item label {
            font-size: 0.9rem;
            font-weight: 400;
            margin: 0;
            cursor: pointer;
            flex-grow: 1;
        }
        
        .selection-counter {
            font-size: 0.8rem;
            color: #718096;
            margin-top: 0.5rem;
            text-align: center;
            padding: 0.25rem;
        }
        
        .selection-counter.has-selections {
            color: #3182ce;
            font-weight: 500;
        }
        
        .selection-counter.at-limit {
            color: #e53e3e;
            font-weight: 600;
        }
        
        .max-selection {
            font-size: 0.8rem;
            color: #718096;
            font-weight: 400;
        }

    </style>
