 * { 
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            background: #fff;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: #f6f6f6;
            position: relative;
            width: 100%;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 4.5rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 55px;
            width: auto;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #e60023;
        }

        .cta-button {
            background: #e60023;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(230, 0, 35, 0.3);
            white-space: nowrap;
            margin: 16px 0;
        }

        .cta-button:hover {
            background: #bd081c;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230, 0, 35, 0.4);
        }

        /* Hero Section */
        .hero {
            background: #f6f6f6;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23e60023" opacity="0.05"/><circle cx="80" cy="40" r="1" fill="%23e60023" opacity="0.05"/><circle cx="40" cy="80" r="1" fill="%23e60023" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-family: 'EB Garamond', serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #333;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.5rem;
            color: #666;
            margin: 4rem;
            font-weight: 400;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin: 2rem 0;
        }

        .cta-primary {
            background: #e60023;
            color: white;
            padding: 16px 32px;
            border: none;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(230, 0, 35, 0.3);
        }

        .cta-primary:hover {
            background: #bd081c;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(230, 0, 35, 0.4);
        }

        .cta-secondary {
            background: white;
            color: #333;
            padding: 16px 32px;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .cta-secondary:hover {
            border-color: #e60023;
            color: #e60023;
        }

        .trust-indicators {
            margin-top: 3rem;
            display: flex;
            justify-content: center;
            gap: 2rem;
            opacity: 0.7;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #666;
        }

        /* Feature Sections */
        .feature-section {
            padding: 80px 0;
            position: relative;
        }

        .feature-section:nth-child(even) {
            background: #f6f6f6;
        }

        .feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .feature-content h2 {
            font-family: 'EB Garamond', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: #333;
        }

        .feature-content p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .feature-benefits {
            list-style: none;
            margin-bottom: 2rem;
        }

        .feature-benefits li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            color: #555;
        }

        .feature-benefits li::before {
            content: "✓";
            color: #e60023;
            font-weight: bold;
            margin-right: 12px;
            font-size: 1.2em;
        }

        .feature-visual {
            
            border-radius: 16px;
           
            overflow: hidden;
            position: relative;
            transition: transform 0.3s ease;
        }

        .feature-visual:hover {
            transform: translateY(-5px);
        }

        .feature-visual img {
            width: 100%;
            height: auto;
            display: block;
        }

       .mockup-container {
    padding: 2rem;
    border-radius: 16px;
    position: relative;
}

       .browser-mockup {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border: 1px solid #e5e7eb;
} 

        .browser-header {
            background: #f1f3f4;
            padding: 12px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .browser-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #e60023;
        }

        .browser-content {
            padding: 2rem;
            background: white;
        }

        /* Analytics Dashboard Mockup */
        .analytics-section {
            padding: 100px 0;
            background: #23282d;
            color: white;
        }

        .analytics-content {
            text-align: center;
            margin-bottom: 4rem;
        }

        .analytics-content h2 {
            font-family: 'EB Garamond', serif;
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: white;
        }

        .analytics-content p {
            font-size: 1.3rem;
            color: #ccc;
            max-width: 750px;
            margin: 0 auto;
        }

        .dashboard-mockup {
            background: white;
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            color: #333;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #f0f0f0;
        }

        .dashboard-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #e60023;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .stat-card {
            background: #f6f6f6;
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            border-color: #e60023;
            transform: translateY(-2px);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #e60023;
            display: block;
        }

        .stat-label {
            color: #666;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Pricing Toggle */
        .pricing-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .toggle-container {
            background: #f6f6f6;
            border-radius: 50px;
            padding: 4px;
            display: flex;
            position: relative;
        }

        .toggle-option {
            padding: 12px 24px;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 600;
            position: relative;
            z-index: 2;
        }

        .toggle-option.active {
            color: white;
        }

        .toggle-option:not(.active) {
            color: #666;
        }

        .toggle-slider {
            position: absolute;
            top: 4px;
            left: 4px;
            width: calc(50% - 4px);
            height: calc(100% - 8px);
            background: #e60023;
            border-radius: 50px;
            transition: transform 0.3s ease;
            z-index: 1;
        }

        .toggle-slider.lifetime {
            transform: translateX(100%);
        }
        .pricing-section {
            padding: 100px 0;
            background: #f6f6f6;
        }

        .pricing-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .pricing-header h2 {
            font-family: 'EB Garamond', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            border-radius: 16px;
            padding: 2.5rem 2rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            position: relative;
            transition: transform 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }

        .pricing-card.featured {
            border: 3px solid #e60023;
            transform: scale(1.05);
        }

        .pricing-card.featured::before {
            content: "Most Popular";
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: #e60023;
            color: white;
            padding: 6px 20px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .plan-name {
            font-family: 'EB Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #333;
        }

        .plan-price {
            font-size: 3rem;
            font-weight: 700;
            color: #e60023;
            margin-bottom: 2rem;
        }

        .plan-price span {
            font-size: 1rem;
            color: #666;
            font-weight: 400;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
            text-align: left;
        }

        .plan-features li {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
            color: #555;
        }

        .plan-features li::before {
            content: "✓";
            color: #e60023;
            font-weight: bold;
            margin-right: 12px;
            min-width: 20px;
        }


.privacy-policy ul, .terms-of-service ul {
    margin: 5px 25px !important;
}
.privacy-policy ul li,
.privacy-policy h2,
.privacy-policy p,
.terms-of-service ul li,
.terms-of-service h2,
.terms-of-service p {
    margin-bottom: 25px;
}
        /* FAQ Section */
        .faq-section, .privacy-policy, .terms-of-service {
            padding: 100px 0;
            background: white;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .faq-header h2 {
            font-family: 'EB Garamond', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .faq-container, .privacy-policy .container, .terms-of-service .container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        .faq-question {
            background: #f8f9fa;
            padding: 1.5rem;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            color: #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .faq-question:hover {
            background: #e9ecef;
        }

        .faq-question::after {
            content: "+";
            font-size: 1.5rem;
            color: #e60023;
            font-weight: bold;
            transition: transform 0.3s ease;
        }

        .faq-question.active::after {
            transform: rotate(45deg);
        }

        .faq-answer {
            background: white;
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer.active {
            padding: 1.5rem;
            max-height: 200px;
        }

        /* Footer CTA */
        .footer-cta {
            background: linear-gradient(135deg, #e60023, #bd081c);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .footer-cta h2 {
            font-family: 'EB Garamond', serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }

        .footer-cta p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Footer */
        footer {
            background: #23282d;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1rem;
            color: #e60023;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.5rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 2rem;
            text-align: center;
            color: #ccc;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.6s ease forwards;
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal Styles */
        .modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 1000;
            backdrop-filter: blur(5px);
        }

        .modal-overlay.show {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeIn 0.3s ease;
        }

        .modal-content {
            background: white;
            border-radius: 16px;
            max-width: 500px;
            width: 90%;
            max-height: 90vh;
            overflow-y: auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: slideUp 0.3s ease;
        }

        .modal-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 2rem 2rem 1rem;
            border-bottom: 1px solid #e5e5e5;
        }

        .modal-header h3 {
            font-family: 'EB Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            margin: 0;
        }

        .modal-close {
            background: none;
            border: none;
            font-size: 2rem;
            color: #666;
            cursor: pointer;
            padding: 0;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: #f0f0f0;
            color: #333;
        }

        .modal-body {
            padding: 1rem 2rem 2rem;
        }

        .modal-body p {
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        #convertkit-form {
            min-height: 200px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Make buttons look clickable */
        .open-waitlist-modal {
            cursor: pointer;
            border: none;
            font-family: inherit;
        }

        /* Mobile Navigation */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.9);
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .mobile-nav.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mobile-nav-content {
            text-align: center;
            color: white;
        }

        .mobile-nav-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-nav-links li {
            margin: 1.5rem 0;
        }

        .mobile-nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .mobile-nav-links a:hover {
            color: #e60023;
        }

        .mobile-cta {
            margin-top: 2rem;
        }

        .mobile-cta .cta-button {
            background: #e60023;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(230, 0, 35, 0.3);
        }

        .mobile-cta .cta-button:hover {
            background: #bd081c;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(230, 0, 35, 0.4);
        }

        /* Mobile Responsive Design */
        @media (max-width: 1024px) {
            .container {
                padding: 0 15px;
            }
            
            .hero h1 {
                font-size: 3rem;
            }
            
            .feature-grid {
                gap: 3rem;
            }
            
            .pricing-cards {
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }
            
            /* Navigation */
            .nav-links, .header-cta {
                display: none;
            }
            
            .mobile-menu-toggle {
                display: flex;
            }
            
            nav {
                padding: 2rem 0;
            }
            
            /* Hero Section */
            .hero {
                padding: 60px 0;
            }
            
            .hero h1 {
                font-size: 2.5rem;
                line-height: 1.1;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                margin: 2rem 0;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }
            
            .cta-primary, .cta-secondary {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            
            /* Feature Sections */
            .feature-section {
                padding: 60px 0;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .feature-content h2 {
                font-size: 2rem;
            }
            
            .feature-content p {
                font-size: 1.1rem;
            }
            
            /* Analytics Section */
            .analytics-section {
                padding: 60px 0;
            }
            
            .analytics-content h2 {
                font-size: 2rem;
            }
            
            .analytics-content p {
                font-size: 1.1rem;
            }
            
            /* Pricing */
            .pricing-section {
                padding: 60px 0;
            }
            
            .pricing-cards {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            /* Stats Grid */
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }
            
            .stat-card {
                padding: 1rem;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            /* Footer */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            /* General Typography */
            h2 {
                font-size: 2rem !important;
            }
            
            /* Migration Section */
            .migration-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
            
            .migration-card {
                padding: 1.5rem;
            }
            
            /* Founders Section */
            .founders-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .founder-card {
                padding: 2rem 1.5rem;
            }
            
            /* Values Section */
            .values-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            /* FAQ Section */
            .faq-section {
                padding: 60px 0;
            }
            
            .faq-question {
                padding: 1rem;
                font-size: 1rem;
            }
            
            /* Modal */
            .modal-content {
                width: 95%;
                margin: 20px;
            }
            
            .modal-header {
                padding: 1.5rem 1.5rem 1rem;
            }
            
            .modal-body {
                padding: 1rem 1.5rem 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 10px;
            }
            
            /* Hero */
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            /* Navigation */
            nav {
                padding: 1.5rem 0;
            }
            
            .logo img {
                height: 45px;
            }
            
            /* Feature Content */
            .feature-content h2 {
                font-size: 1.8rem;
            }
            
            .feature-content p {
                font-size: 1rem;
            }
            
            /* Analytics */
            .analytics-content h2 {
                font-size: 1.8rem;
            }
            
            /* Pricing */
            .plan-price {
                font-size: 2.5rem;
            }
            
            /* Stats */
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            /* General */
            h2 {
                font-size: 1.8rem !important;
            }
            
            /* Migration */
            .migration-content h2 {
                font-size: 2rem;
            }
            
            /* Founders */
            .founder-name {
                font-size: 1.5rem;
            }
            
            /* Values */
            .value-title {
                font-size: 1.3rem;
            }
        }


 /* Story Section */
        .story-section {
            padding: 100px 0;
            background: white;
        }

        .story-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .story-content h2 {
            font-family: 'EB Garamond', serif;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
            color: #333;
        }

        .story-content p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        /* Founders Section */
        .founders-section {
            padding: 100px 0;
            background: #f6f6f6;
        }

        .founders-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .founders-header h2 {
            font-family: 'EB Garamond', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .founders-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 4rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .founder-card {
            background: white;
            border-radius: 16px;
            padding: 3rem 2.5rem;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            text-align: center;
        }

        .founder-card:hover {
            transform: translateY(-5px);
        }

        .founder-avatar img {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: #e60023;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            font-weight: 700;
        }
        
        

        .founder-name {
            font-family: 'EB Garamond', serif;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .founder-title {
            color: #e60023;
            font-weight: 600;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .founder-bio {
            color: #666;
            line-height: 1.6;
            margin-bottom: 2rem;
            text-align: left;
        }

        .founder-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .founder-link {
            color: #e60023;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 16px;
            border: 2px solid #e60023;
            border-radius: 8px;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .founder-link:hover {
            background: #e60023;
            color: white;
        }

        /* Founder Testimonial Section */
        .founder-testimonial {
            padding: 80px 0;
            background: white;
            border-top: 1px solid #e5e5e5;
            border-bottom: 1px solid #e5e5e5;
        }

        .testimonial-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .testimonial-quote {
            margin-bottom: 3rem;
        }

        .testimonial-quote p {
            font-family: 'EB Garamond', serif;
            font-size: 1.5rem;
            line-height: 1.6;
            color: #333;
            font-style: italic;
            position: relative;
            padding: 0 2rem;
        }

        .testimonial-quote p::before {
            content: '"';
            font-size: 4rem;
            color: #e60023;
            position: absolute;
            top: -10px;
            left: 0;
            font-family: 'EB Garamond', serif;
        }

        .testimonial-quote p::after {
            content: '"';
            font-size: 4rem;
            color: #e60023;
            position: absolute;
            bottom: -20px;
            right: 0;
            font-family: 'EB Garamond', serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .author-photo img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #e60023;
        }

        .author-info {
            text-align: left;
        }

        .author-info h3 {
            font-family: 'EB Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .author-title {
            color: #e60023;
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }

        .author-bio {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.5;
            max-width: 300px;
        }

        .author-bio a {
            color: #000;
            
        }

        /* Mobile Responsive for Testimonial */
        @media (max-width: 768px) {
            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }

            .author-info {
                text-align: center;
            }

            .testimonial-quote p {
                font-size: 1.3rem;
                padding: 0 1rem;
            }

            .testimonial-quote p::before,
            .testimonial-quote p::after {
                font-size: 3rem;
            }
        }

        /* Values Section */
        .values-section {
            padding: 100px 0;
            background: white;
        }

        .values-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .values-header h2 {
            font-family: 'EB Garamond', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            max-width: 1000px;
            margin: 0 auto;
        }

        .value-card {
            text-align: center;
            padding: 2rem 1.5rem;
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: #e60023;
            border-radius: 50%;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .value-title {
            font-family: 'EB Garamond', serif;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #333;
        }

        .value-description {
            color: #666;
            line-height: 1.6;
        }

        /* Dropdown Menu Styles */
        .dropdown {
            position: relative;
        }
        
        .dropdown-toggle {
            cursor: pointer;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            z-index: 1000;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu li {
            margin: 0;
        }
        
        .dropdown-menu a {
            display: block;
            padding: 12px 16px;
            color: #4a5568;
            text-decoration: none;
            transition: background-color 0.3s ease;
            border-bottom: 1px solid #f7fafc;
        }
        
        .dropdown-menu a:hover {
            background-color: #f7fafc;
            color: #e60023;
        }
        
        .dropdown-menu li:last-child a {
            border-bottom: none;
        }
        
        @media (max-width: 768px) {
            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                background: transparent;
                margin-top: 10px;
            }
            
            .dropdown-menu a {
                padding: 8px 0;
                border-bottom: none;
            }
        }