.elementor-1223 .elementor-element.elementor-element-2df90be{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-60px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-1223 .elementor-element.elementor-element-5f015bd{width:100%;max-width:100%;}.elementor-1223 .elementor-element.elementor-element-5f015bd.elementor-element{--flex-grow:0;--flex-shrink:1;}.elementor-1223 .elementor-element.elementor-element-fbd0717{width:100%;max-width:100%;}.elementor-1223 .elementor-element.elementor-element-fbd0717.elementor-element{--flex-grow:0;--flex-shrink:1;}/* Start custom CSS for container, class: .elementor-element-2df90be *//* ==========================================
           PURE CSS CONTACT PAGE
           No JavaScript Required
           ========================================== */
        
        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #2d3748;
            background: #f8fafc;
        }
        @media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.elementor-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

        /* Colors */
        :root {
            --primary-blue: #2563eb;
            --secondary-blue: #1e40af;
            --dark-blue: #1e3a8a;
            --teal: #0891b2;
            --cyan: #06b6d4;
            --green: #059669;
            --text-dark: #1e293b;
            --text-secondary: #64748b;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-color: #e2e8f0;
        }
        
        /* Layout */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .section {
            padding: 100px 0;
        }
        
        /* Typography */
        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 24px;
        }
        
        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--text-dark);
        }
        
        h3 {
            font-size: 1.8rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 16px;
            color: var(--text-dark);
        }
        
        h4 {
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 12px;
            color: var(--text-dark);
        }
        
        p {
            line-height: 1.7;
            margin-bottom: 16px;
        }
        
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        a:hover {
            color: var(--teal);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2563eb 0%, #1e40af 50%, #1e3a8a 100%);
            position: relative;
            overflow: hidden;
            color: white;
            padding: 120px 0 80px;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -200px;
            width: 600px;
            height: 600px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
        }
        
        .badge {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            border: 1px solid rgba(255,255,255,0.3);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }
        
        .hero-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            margin-top: 32px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
        }
        
        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
        }
        
        /* Grid Layouts */
        .two-col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: start;
        }
        
        .three-col {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        
        .founders-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 32px;
        }
        
        /* Cards */
        .card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 40px rgba(0,0,0,0.12);
        }
        
        .card-sm {
            background: white;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin-bottom: 16px;
            transition: all 0.3s ease;
        }
        
        .card-sm:hover {
            transform: translateX(4px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        
        /* Form Styles */
        .form-row {
            margin-bottom: 24px;
        }
        
        .form-label {
            display: block;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        
        .required {
            color: #dc2626;
        }
        
        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 14px 18px;
            border: 2px solid var(--border-color);
            border-radius: 12px;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
            background: white;
            color: var(--text-dark);
        }
        
        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
        
        .form-input:hover,
        .form-select:hover,
        .form-textarea:hover {
            border-color: var(--primary-blue);
        }
        
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .form-help {
            font-size: 0.85rem;
            color: var(--text-secondary);
            margin-top: 4px;
        }
        
        /* Checkbox Styling */
        .checkbox-wrapper {
            display: flex;
            align-items: start;
            gap: 12px;
            margin-bottom: 24px;
        }
        
        .checkbox-input {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
            flex-shrink: 0;
        }
        
        .checkbox-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            line-height: 1.5;
            cursor: pointer;
        }
        
        /* Buttons */
        .btn {
            display: inline-block;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            border: none;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0891b2 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
            color: white;
        }
        
        .btn-white {
            background: white;
            color: var(--primary-blue);
        }
        
        .btn-white:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
            color: var(--primary-blue);
        }
        
        .btn-outline-white {
            background: transparent;
            color: white;
            border: 2px solid white;
        }
        
        .btn-outline-white:hover {
            background: white;
            color: var(--primary-blue);
        }
        
        .btn-full {
            width: 100%;
        }
        
        .btn-lg {
            padding: 18px 40px;
            font-size: 1.1rem;
        }
        
        /* Trust Badges */
        .trust-badges {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin: 32px 0;
        }
        
        .trust-badge {
            text-align: center;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
            border: 2px solid var(--border-color);
        }
        
        .trust-badge-icon {
            font-size: 2rem;
            margin-bottom: 8px;
            display: block;
        }
        
        .trust-badge-title {
            font-size: 0.85rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        
        .trust-badge-text {
            font-size: 0.75rem;
            color: var(--text-secondary);
        }
        
        /* Contact Methods */
        .contact-method {
            display: flex;
            align-items: start;
            gap: 20px;
            padding: 24px;
            background: white;
            border-radius: 16px;
            margin-bottom: 16px;
            border: 2px solid var(--border-color);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
        }
        
        .contact-method:hover {
            border-color: var(--primary-blue);
            transform: translateX(4px);
            box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
        }
        
        .contact-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        /* Response Banner */
        .response-banner {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            padding: 16px 24px;
            border-radius: 12px;
            text-align: center;
            margin-bottom: 32px;
            font-weight: 600;
        }
        
        /* Founder Cards */
        .founder-card {
            text-align: center;
            padding: 24px;
            background: white;
            border-radius: 16px;
            border: 2px solid var(--border-color);
        }
        
        .founder-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0891b2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 16px;
        }
        
        .founder-name {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        
        .founder-role {
            color: var(--primary-blue);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }
        
        .founder-specialty {
            color: var(--text-secondary);
            font-size: 0.85rem;
        }
        
        /* FAQ Items */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 16px;
            border-left: 4px solid var(--primary-blue);
        }
        
        .faq-question {
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 8px;
            font-size: 1.05rem;
        }
        
        .faq-answer {
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }
        
        /* What to Expect */
        .expect-list {
            display: grid;
            gap: 12px;
        }
        
        .expect-item {
            display: flex;
            gap: 12px;
            align-items: start;
        }
        
        .expect-check {
            color: #10b981;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .expect-text {
            color: var(--text-secondary);
            font-size: 0.9rem;
            line-height: 1.5;
        }
        
        .expect-text strong {
            color: var(--text-dark);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0891b2 100%);
            color: white;
            text-align: center;
        }
        
        .cta-stats {
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 32px;
            backdrop-filter: blur(10px);
        }
        
        .cta-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 24px;
            margin-bottom: 24px;
        }
        
        .cta-stat-item {
            text-align: center;
        }
        
        .cta-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 4px;
            display: block;
        }
        
        .cta-stat-label {
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        /* Success Message Styling */
        .success-box {
            background: #f0fdf4;
            border: 2px solid #10b981;
            color: #059669;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 24px;
            display: none;
        }
        
        /* Show success message when URL contains #success */
        .success-box:target {
            display: block;
        }
        
        /* Utility Classes */
        .text-center {
            text-align: center;
        }
        
        .mb-sm { margin-bottom: 16px; }
        .mb-md { margin-bottom: 24px; }
        .mb-lg { margin-bottom: 32px; }
        .mb-xl { margin-bottom: 48px; }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            
            .section { padding: 60px 0; }
            .container { padding: 0 16px; }
            
            .two-col {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .three-col,
            .trust-badges {
                grid-template-columns: 1fr;
            }
            
            .founders-grid {
                grid-template-columns: 1fr;
            }
            
            .hero {
                padding: 80px 0 60px;
            }
            
            .hero-stats {
                justify-content: center;
                gap: 20px;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }
        
        /* Print Styles */
        @media print {
            .hero,
            .cta-section {
                background: white;
                color: black;
            }
            
            .btn {
                border: 2px solid black;
                color: black;
            }
        }/* End custom CSS */