/* Moved from index.html <style> block */
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
        }
        
        :root {
            --primary-color: #000;
            --accent-color: #2563eb;
            --light-gray: #f3f4f6;
            --mid-gray: #e5e7eb;
            --dark-gray: #6b7280;
            --white: #fff;
            --transition: all 0.3s ease;
        }
        
        body {
            color: var(--primary-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            padding-bottom: 1rem;
            width: 100%;
            overflow-x: hidden;
        }
        
        section {
            padding: 5rem 0;
        }
        
        h1, h2, h3, p {
            word-wrap: break-word;
            overflow-wrap: break-word;
            max-width: 100%;
        }
        
        .hero-content, .cta-content {
            max-width: 100%;
            overflow-x: hidden;
        }
        
        .review-text {
            word-wrap: break-word;
            overflow-wrap: break-word;
            max-width: 100%;
        }
        
        .team-info p {
            word-wrap: break-word;
            overflow-wrap: break-word;
            max-width: 100%;
        }
        
        .accordion-text {
            word-wrap: break-word;
            overflow-wrap: break-word;
            max-width: 100%;
        }
        
        h1 {
            font-size: 3.5rem;
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }
        
        h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }
        
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        p {
            margin-bottom: 1.5rem;
            font-size: 1.125rem;
        }
        
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.875rem 1.75rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 0.375rem;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
            height: 48px;
            box-sizing: border-box;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            color: var(--white);
        }
        
        .btn-primary:hover {
            background-color: #333;
            transform: translateY(-2px);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }
        
        .btn-outline:hover {
            background-color: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }
        
        img {
            max-width: 100%;
            height: auto;
            -webkit-user-drag: none;
            user-drag: none;
            pointer-events: auto;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: var(--white);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 2rem;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
        }
        
        .nav-item {
            margin-left: 2rem;
            display: flex;
            align-items: center;
            height: 100%;
        }
        
        .nav-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
            display: inline-block;
        }
        
        .nav-link::after {
            content: '';
            display: block;
            position: absolute;
            left: 0;
            bottom: 0;
            width: 0%;
            height: 2px;
            background: var(--accent-color);
            transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .nav-link:hover {
            color: var(--accent-color);
        }
        
        .hamburger {
            display: none;
            cursor: pointer;
            flex-direction: column;
            justify-content: space-around;
            width: 25px;
            height: 21px;
            padding: 0;
            background: transparent;
            border: none;
        }
        
        .hamburger .bar {
            display: block;
            width: 100%;
            height: 3px;
            background-color: var(--primary-color);
            border-radius: 2px;
            transition: all 0.3s ease-in-out;
        }
        
        .nav-menu.active ~ .hamburger .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        .nav-menu.active ~ .hamburger .bar:nth-child(2) {
            opacity: 0;
        }
        .nav-menu.active ~ .hamburger .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        
        /* Hero Section */
        .hero {
            padding-top: 8rem;
            background-color: var(--white);
        }
        
        .hero-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .hero-content {
            flex: 1;
            padding-right: 2rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
        
        .hero-image {
            flex: 1;
        }
        
        .hero-image img {
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .product-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2rem;
        }
        
        .stats {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 1rem;
            margin-left: -1.5rem;
            padding-left: 0;
        }
        
        .stats-group {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .user-avatars {
            margin-left: 0;
        }
        
        .stats-number {
            font-size: 1.5rem;
            font-weight: 700;
        }
        
        .stats-text {
            font-size: 1.125rem;
            color: var(--dark-gray);
        }
        
        /* Logo Slider */
        .logo-slider {
            background-color: var(--light-gray);
            padding: 1.25rem 0 0.5rem 0;
            overflow: hidden;
        }
        
        .logo-flex {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }
        
        .logo-slider-text {
            flex: 0 0 350px;
            font-size: 1.25rem;
            font-weight: 500;
            color: var(--primary-color);
            text-align: left;
            min-width: 220px;
            margin-bottom: 0;
        }
        
        .logo-slider-logos {
            flex: 1 1 auto;
            min-width: 0;
            overflow: hidden;
            display: flex;
            align-items: center;
            height: 60px;
        }
        
        .slider-container {
            display: flex;
            gap: 1.25rem;
            animation: scroll-logos 30s linear infinite;
            align-items: center;
            height: 60px;
        }
        
        .slider-item {
            flex: 0 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 90px;
            height: 60px;
        }
        
        .slider-item img {
            max-height: 40px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: var(--transition);
        }
        
        .slider-item:hover img {
            filter: grayscale(0);
            opacity: 1;
        }
        
        .slider-item i { /* Styles for Font Awesome icons */
            font-size: 2.5rem; /* Adjust size as needed */
            color: var(--dark-gray); /* Or your desired color */
            opacity: 0.7;
            transition: var(--transition);
        }
        
        .slider-item:hover i {
            opacity: 1;
            color: var(--accent-color); /* Optional: change color on hover */
        }
        
        @keyframes scroll-logos {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-150px * 7 - 4rem * 7));
            }
        }
        
        /* Product Features Section */
        .features {
            background-color: var(--white);
        }
        
        .bentobox {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: auto auto;
            gap: 1.5rem;
        }
        
        .bentobox-item {
            background-color: var(--light-gray);
            border-radius: 1rem;
            padding: 2rem;
            transition: var(--transition);
        }
        
        .bentobox-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .bentobox-item.large {
            grid-column: 1 / -1;
        }
        
        .bentobox-item img {
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Why Choose Us Section */
        .why-us {
            background-color: var(--light-gray);
            padding: 5rem 0 2rem 0;
        }
        
        .cards-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            padding: 0 1rem;
            padding-bottom: 1rem;
        }
        
        .card {
            background-color: var(--white);
            border-radius: 1rem;
            padding: 2rem;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            min-width: 0;
        }
        
        .card:hover {
            transform: translateY(5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        
        .card-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            padding: 1rem;
            border-radius: 1rem;
            background-color: var(--light-gray);
        }
        
        /* Review Section */
        .reviews {
            background-color: var(--white);
            position: relative;
            overflow: hidden;
        }
        
        .reviews-container {
            position: relative;
        }
        
        .review-slider {
            display: flex;
            gap: 2rem;
            will-change: transform;
        }
        
        .review-card {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: space-between;
            background-color: var(--light-gray);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            min-width: 300px;
            height: 100%;
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 1rem;
        }
        
        .review-name {
            font-weight: 600;
        }
        
        .review-stars {
            color: #fbbf24;
            margin-top: 0.25rem;
        }
        
        .review-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            width: 100%;
            min-height: 110px;
        }
        
        .review-divider {
            width: 100%;
            height: 1px;
            background: #e5e7eb;
            margin: 1rem 0;
        }
        
        .review-footer {
            display: flex;
            align-items: center;
            width: 100%;
        }
        
        .review-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .review-country {
            font-size: 0.95rem;
            color: var(--dark-gray);
        }
        
        .slider-controls {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 2rem;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--mid-gray);
            cursor: pointer;
            transition: var(--transition);
        }
        
        .slider-dot.active {
            background-color: var(--accent-color);
        }
        
        /* FAQ Section */
        .faq {
            background-color: var(--light-gray);
        }
        .faq-flex {
            display: flex;
            align-items: flex-start;
            gap: 3rem;
            flex-wrap: wrap;
        }
        .faq-left {
            flex: 1 1 300px;
            min-width: 250px;
        }
        .faq-left h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-align: left;
        }
        .faq-subtitle {
            font-size: 1.125rem;
            color: var(--dark-gray);
            margin-bottom: 2rem;
            text-align: left;
        }
        .faq-right {
            flex: 2 1 500px;
            min-width: 300px;
        }
        .accordion {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .accordion-item {
            background-color: var(--white);
            border-radius: 0.5rem;
            margin-bottom: 1rem;
            overflow: hidden;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }
        
        .accordion-header {
            padding: 1.5rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .accordion-header:hover {
            background-color: rgba(0, 0, 0, 0.02);
        }
        
        .accordion-icon {
            transition: var(--transition);
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .accordion-text {
            padding: 0 1.5rem 1.5rem;
        }
        
        .accordion-item.active .accordion-icon {
            transform: rotate(180deg);
        }
        
        .accordion-item.active .accordion-content {
            max-height: 1000px;
        }
        
        /* CTA Section */
        .cta {
            background-color: var(--white);
        }
        .cta-container {
            display: flex;
            padding-bottom: 1rem;
            align-items: center;
            justify-content: center;
        }
        .cta-card {
            display: flex;
            align-items: center;
            background: var(--light-gray);
            border-radius: 1.5rem;
            box-shadow: 0 4px 24px rgba(0,0,0,0.06);
            padding: 3rem;
            width: 100%;
            max-width: 1100px;
            gap: 2rem;
        }
        .cta-content {
            flex: 1;
            padding-right: 2rem;
        }
        .cta-image {
            flex: 1;
        }
        .cta-image img {
            border-radius: 1rem;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }
        @media (max-width: 992px) {
            .faq-flex {
                flex-direction: column;
                gap: 2rem;
            }
            .faq-left h2, .faq-subtitle {
                text-align: center;
            }
            .cta-card {
                flex-direction: column;
                padding: 2rem;
                text-align: center;
            }
            .cta-content {
                padding-right: 0;
                margin-bottom: 2rem;
                align-items: center;
            }
        }
        
        /* Footer */
        .footer {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 4rem 0 2rem;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }
        
        .footer-col h3 {
            font-size: 1.25rem;
            margin-bottom: 1.5rem;
            position: relative;
            padding-bottom: 0.75rem;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background-color: var(--white);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: #d1d5db;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--white);
            padding-left: 5px;
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--white);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background-color: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.875rem;
            color: #d1d5db;
        }
        
        /* Responsive Styles */
        @media (max-width: 1200px) {
            .container {
                padding: 0 1.5rem;
            }
            
            h1 {
                font-size: 3rem;
            }
            
            .hero-container, .cta-container {
                gap: 2rem;
            }
        }

        @media (max-width: 992px) {
            .hero-container, .cta-container {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-content, .cta-content {
                padding-right: 0;
                margin-bottom: 2rem;
                align-items: center;
            }
            
            .product-buttons, .cta-buttons {
                justify-content: center;
            }
            
            .bentobox {
                grid-template-columns: 1fr;
            }
            
            .review-card {
                flex: 0 0 calc(50% - 1rem);
            }
            
            h1 {
                font-size: 2.5rem;
            }
            
            h2 {
                font-size: 2rem;
            }

            .team-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .faq-flex {
                flex-direction: column;
                gap: 2rem;
            }

            .faq-left h2, .faq-subtitle {
                text-align: center;
            }

            .cta-card {
                flex-direction: column;
                padding: 2rem;
                text-align: center;
            }

            .cta-content {
                padding-right: 0;
                margin-bottom: 2rem;
            }
        }
        
        @media (max-width: 768px) {
            .navbar-container {
                padding: 1rem;
                position: relative;
            }

            .logo {
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
            }
            
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background-color: var(--white);
                width: 100%;
                text-align: center;
                transition: var(--transition);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
                padding: 2rem 0;
                z-index: 1000;
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-item {
                margin: 1.5rem 0;
            }
            
            .hamburger {
                display: flex;
                position: absolute;
                right: 1rem;
                top: 50%;
                transform: translateY(-50%);
                z-index: 1001;
            }
            
            .review-card {
                flex: 0 0 100%;
                min-width: 280px;
            }
            
            section {
                padding: 3rem 0;
            }
            
            h1 {
                font-size: 2rem;
                line-height: 1.2;
            }
            
            h2 {
                font-size: 1.75rem;
                line-height: 1.3;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .team-photo {
                height: 250px;
            }

            .team-info {
                padding: 1.25rem;
            }

            .logo-flex {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
                padding: 0 1rem;
            }

            .logo-slider-text {
                text-align: left;
                margin-bottom: 0.5rem;
                font-size: 1.1rem;
            }

            .logo-slider-logos {
                width: 100%;
                margin-top: 0.25rem;
                height: 40px;
                align-items: center;
            }

            .slider-container {
                gap: 0.75rem;
                height: 40px;
                align-items: center;
            }

            .slider-item {
                min-width: 70px;
                height: 40px;
            }

            .stats {
                justify-content: center;
                margin-left: 0;
            }

            .user-avatars {
                margin: 0;
            }

            .achievement-pill {
                margin: 0 auto 1.25rem;
                font-size: 0.9rem;
            }

            .pill-inner {
                font-size: 0.9em;
                padding: 0.15rem 0.9rem;
            }

            .cards-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                padding: 0 1rem;
            }

            .card {
                padding: 1.5rem;
            }

            .review-slider {
                gap: 1rem;
                padding: 0 1rem;
            }

            .review-card {
                padding: 1.5rem;
            }

            .review-text {
                min-height: auto;
                font-size: 1rem;
            }

            .bentobox {
                padding: 0 1rem;
            }

            .bentobox-item {
                padding: 1.5rem;
            }

            .bentobox-item img {
                max-width: 100%;
                height: auto;
                object-fit: cover;
                margin: 0 auto 1rem;
            }

            .faq-flex {
                padding: 0 1rem;
            }

            .accordion-header {
                padding: 1.25rem;
                font-size: 1rem;
            }

            .accordion-text {
                padding: 0 1.25rem 1.25rem;
                font-size: 0.95rem;
            }

            .cta-card {
                padding: 1.5rem;
                margin: 0 1rem;
            }

            .cta-content {
                padding: 0;
            }

            .cta-image img {
                max-height: 250px;
                object-fit: cover;
            }

            .footer-container {
                padding: 0 1rem;
                gap: 2rem;
            }

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

            .footer-col h3:after {
                left: 50%;
                transform: translateX(-50%);
            }

            .social-links {
                justify-content: center;
            }

            .logo-slider {
                display: none !important;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 0.75rem;
            }

            h1 {
                font-size: 1.75rem;
                line-height: 1.3;
                padding: 0 0.5rem;
            }

            h2 {
                font-size: 1.5rem;
                line-height: 1.3;
                padding: 0 0.5rem;
            }

            p {
                font-size: 1rem;
                line-height: 1.5;
                padding: 0 0.5rem;
            }

            .hero-content {
                padding: 0 0.5rem;
            }

            .bentobox-item {
                padding: 1.25rem;
            }

            .review-card {
                padding: 1.25rem;
            }

            .team-info {
                padding: 1.25rem;
            }

            .accordion-header {
                padding: 1.25rem;
                font-size: 0.95rem;
            }

            .accordion-text {
                padding: 0 1.25rem 1.25rem;
                font-size: 0.95rem;
            }

            .cta-card {
                padding: 1.25rem;
            }

            .footer-container {
                padding: 0 0.75rem;
            }

            .logo-slider-text {
                font-size: 1rem;
                margin-bottom: 0.25rem;
            }

            .slider-container {
                gap: 0.5rem;
                height: 32px;
                align-items: center;
            }

            .slider-item {
                min-width: 50px;
                height: 32px;
            }

            .slider-item img {
                max-height: 28px;
            }

            .bentobox-item img {
                max-height: 180px;
            }
        }

        /* Achievement Pill Styles */
        .achievement-pill {
            display: flex;
            align-items: center;
            background: var(--light-gray);
            border-radius: 999px;
            padding: 0.25rem 1.25rem 0.25rem 0.75rem;
            width: fit-content;
            margin-bottom: 1.25rem;
            font-size: 0.95rem;
            font-weight: 500;
            gap: 0.75rem;
        }

        .pill-outer {
            display: flex;
            align-items: center;
            background: var(--light-gray);
            border-radius: 999px;
            padding: 0.15rem .15rem 0.15rem 0.4rem;
            font-size: 0.80rem;
            font-weight: 500;
            position: relative;
        }

        .pill-inner {
            background: var(--white);
            color: var(--primary-color);
            border-radius: 999px;
            padding: 0.15rem 1.1rem;
            font-size: 0.95em;
            font-weight: 600;
            margin-left: 0.5rem;
            margin-right: 0.5rem;
            white-space: nowrap;
            box-shadow: 0 1px 4px rgba(0,0,0,0.03);
        }

        .pill-outer {
            color: var(--primary-color);
        }

        .pill-outer .pill-inner {
            margin-right: -0.5rem;
        }

        /* Overlapping User Avatars */
        .user-avatars {
            display: flex;
            align-items: center;
            margin-left: 1.5rem;
        }

        .avatar-circle {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: #e5e7eb;
            border: 2px solid #fff;
            display: inline-block;
            margin-left: -10px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.04);
        }

        .avatar-circle:first-child {
            margin-left: 0;
        }

        /* Team Section Styles */
        .team {
            background-color: var(--white);
            padding: 5rem 0 2rem 0;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            padding: 0 1rem;
            padding-bottom: 1rem;
        }

        .team-member {
            background: var(--white);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            min-width: 0;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .team-photo {
            width: 100%;
            height: 300px;
            overflow: hidden;
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-member:hover .team-photo img {
            transform: scale(1.05);
        }

        .team-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .team-info h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }

        .team-role {
            display: block;
            color: var(--accent-color);
            font-weight: 500;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .team-info p {
            font-size: 0.95rem;
            color: var(--dark-gray);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .team-social {
            display: flex;
            gap: 1rem;
        }

        .team-social a {
            color: var(--dark-gray);
            transition: color 0.3s ease;
        }

        .team-social a:hover {
            color: var(--accent-color);
        }

        /* Popup Modal Styles */
        .modal {
            position: fixed;
            z-index: 2000;
            left: 0; top: 0;
            width: 100vw; height: 100vh;
            background: rgba(0,0,0,0.4);
            display: flex; align-items: center; justify-content: center;
            display: none;
        }
        .modal-content {
            background: #fff;
            padding: 2rem;
            border-radius: 1rem;
            max-width: 400px;
            width: 90%;
            position: relative;
            box-shadow: 0 8px 32px rgba(0,0,0,0.2);
        }
        .close-modal {
            position: absolute;
            right: 1rem; top: 1rem;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .modal-content label {
            display: block;
            margin-top: 1rem;
            margin-bottom: 0.25rem;
            font-weight: 500;
        }
        .modal-content input,
        .modal-content textarea {
            width: 100%;
            padding: 0.75rem;
            border-radius: 0.375rem;
            border: 1px solid #e5e7eb;
            margin-bottom: 0.5rem;
            font-size: 1rem;
            box-sizing: border-box;
        }
        /* Navy Blue Button Style */
        .btn-navy {
            background-color: #2c4d9a;
            color: #fff;
            border: none;
        }
        .btn-navy:hover {
            background-color: #223366;
            color: #fff;
            transform: translateY(-2px);
        }
        /* Shared celebration animation for both modals */
        #waitlistSubmitBtn .celebrate-emoji,
        #contactSubmitBtn .celebrate-emoji {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%) scale(0.5);
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s, transform 0.3s;
        }
        #waitlistSubmitBtn .join-text,
        #contactSubmitBtn .send-text {
            display: inline-block;
            transition: transform 0.5s, opacity 0.5s;
        }
        #waitlistSubmitBtn.animate .join-text,
        #contactSubmitBtn.animate .send-text {
            transform: translateY(-30px);
            opacity: 0;
        }
        #waitlistSubmitBtn.animate .celebrate-emoji,
        #contactSubmitBtn.animate .celebrate-emoji {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.3);
        }
        #waitlistSubmitBtn.popout .celebrate-emoji,
        #contactSubmitBtn.popout .celebrate-emoji {
            opacity: 0;
            transform: translate(-50%, -50%) scale(2.2);
            transition: opacity 0.4s, transform 0.4s;
        }