
        :root {
            --space-blue: #01203f;
            --carmine-pink: #e63743;
            --midnight-black: #000000;
            --pure-white: #ffffff;
            --seaweed: #00798f;
            --forest-green: #054338;
            --orange: #fe5001;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--pure-white);
            color: var(--midnight-black);
            overflow-x: hidden;
        }

        /* Header & Navigation */
        header {
            background-color: var(--space-blue);
            color: var(--pure-white);
            padding: 1rem 2rem;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
        }

        .header-scrolled {
            padding: 0.7rem 2rem;
            background-color: rgba(1, 32, 63, 0.95);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, var(--carmine-pink), var(--orange));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo-icon::after {
            content: '';
            position: absolute;
            width: 12px;
            height: 12px;
            background-color: var(--pure-white);
            border-radius: 50%;
            box-shadow: 0 0 8px var(--pure-white);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: bold;
            letter-spacing: 0.5px;
        }

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

        .nav-links a {
            color: var(--pure-white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--carmine-pink);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--carmine-pink);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
        }

        .btn {
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background-color: var(--carmine-pink);
            color: var(--pure-white);
            border: 2px solid var(--carmine-pink);
        }

        .btn-primary:hover {
            background-color: transparent;
            color: var(--carmine-pink);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 55, 67, 0.3);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--pure-white);
            border: 2px solid var(--pure-white);
        }

        .btn-secondary:hover {
            background-color: var(--pure-white);
            color: var(--space-blue);
            transform: translateY(-3px);
        }

        .btn-outline {
            background-color: transparent;
            color: var(--space-blue);
            border: 2px solid var(--space-blue);
        }

        .btn-outline:hover {
            background-color: var(--space-blue);
            color: var(--pure-white);
            transform: translateY(-3px);
        }

        /* Mobile Navigation */
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: white;
            z-index: 1001;
        }

        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 300px;
            height: 100vh;
            background-color: var(--space-blue);
            padding: 100px 2rem 2rem;
            transition: right 0.4s ease-in-out;
            z-index: 1000;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
        }

        .mobile-nav.active {
            right: 0;
        }

        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .mobile-nav-links a {
            color: var(--pure-white);
            text-decoration: none;
            font-size: 1.2rem;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .mobile-nav-links a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--carmine-pink);
            padding-left: 1.5rem;
        }

        .mobile-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        /* Hero Carousel */
        .hero-carousel {
            position: relative;
            height: 100vh;
            overflow: hidden;
            background-color: var(--space-blue);
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 2rem;
        }

        .carousel-slide.active {
            opacity: 1;
            z-index: 1;
        }

        .carousel-slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(1, 32, 63, 0.9) 0%, rgba(0, 121, 143, 0.7) 100%);
            z-index: -1;
        }

        .carousel-content {
            max-width: 800px;
            color: var(--pure-white);
            position: relative;
            z-index: 2;
            transform: translateY(30px);
            transition: transform 1s ease 0.3s;
        }

        .carousel-slide.active .carousel-content {
            transform: translateY(0);
        }

        .carousel-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(20px);
            transition: all 1s ease 0.5s;
        }

        .carousel-slide.active .carousel-content h1 {
            opacity: 1;
            transform: translateY(0);
        }

        .carousel-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 1s ease 0.7s;
        }

        .carousel-slide.active .carousel-content p {
            opacity: 0.9;
            transform: translateY(0);
        }

        .carousel-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            opacity: 0;
            transform: translateY(20px);
            transition: all 1s ease 0.9s;
        }

        .carousel-slide.active .carousel-buttons {
            opacity: 1;
            transform: translateY(0);
        }

        /* Slide-specific backgrounds */
        .slide-1 {
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIGZpbGw9InJnYmEoMCwgMCwgMCwgMC4xKSIvPjxwYXRoIGQ9Ik0wIDUwMEw1MDAgMEwxMDAwIDUwMEw1MDAgMTAwMFoiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNSkiLz48L3N2Zz4=');
        }

        .slide-2 {
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIGZpbGw9InJnYmEoMCwgMCwgMCwgMC4xKSIvPjxjaXJjbGUgY3g9IjI1MCIgY3k9IjI1MCIgcj0iMjAwIiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDUpIi8+PGNpcmNsZSBjeD0iNzUwIiBjeT0iNzUwIiByPSIyMDAiIGZpbGw9InJnYmEoMjU1LCAyNTUsIDI1NSwgMC4wNSkiLz48L3N2Zz4=');
        }

        .slide-3 {
            background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBmaWxsPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxyZWN0IHdpZHRoPSIxMDAwIiBoZWlnaHQ9IjEwMDAiIGZpbGw9InJnYmEoMCwgMCwgMCwgMC4xKSIvPjxyZWN0IHg9IjIwMCIgeT0iMjAwIiB3aWR0aD0iNjAwIiBoZWlnaHQ9IjYwMCIgcng9IjUwIiBmaWxsPSJyZ2JhKDI1NSwgMjU1LCAyNTUsIDAuMDUpIi8+PC9zdmc+');
        }

        .carousel-controls {
            position: absolute;
            bottom: 2rem;
            left: 0;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            z-index: 10;
        }

        .carousel-dots {
            display: flex;
            gap: 0.8rem;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background-color: var(--pure-white);
            transform: scale(1.2);
        }

        .carousel-dot:hover {
            background-color: var(--pure-white);
        }

        .carousel-nav {
            display: flex;
            gap: 1rem;
        }

        .carousel-nav-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.2);
            color: var(--pure-white);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .carousel-nav-btn:hover {
            background-color: var(--carmine-pink);
            transform: scale(1.1);
        }

        /* Section Styling */
        section {
            padding: 6rem 2rem;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--space-blue);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--carmine-pink);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--seaweed);
            max-width: 700px;
            margin: 0 auto;
        }

        /* THE SOLUTION Section */
        .solution-overview {
            background-color: var(--pure-white);
        }

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

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

        .solution-header h2 {
            font-size: 2.5rem;
            color: var(--space-blue);
            margin-bottom: 1.5rem;
        }

        .solution-header p {
            font-size: 1.3rem;
            color: var(--seaweed);
            line-height: 1.6;
            max-width: 900px;
            margin: 0 auto;
        }

        .solution-highlights {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-bottom: 3rem;
        }

        .highlight-item {
            text-align: center;
            padding: 2rem;
            border-radius: 12px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .highlight-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--space-blue), var(--seaweed));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
            font-size: 2rem;
        }

        .highlight-item h4 {
            font-size: 1.5rem;
            color: var(--space-blue);
            margin-bottom: 1rem;
        }

        .highlight-item p {
            color: #666;
            line-height: 1.6;
        }

        .solution-cta {
            text-align: center;
            margin-top: 3rem;
        }

        /* HOW IT WORKS Section */
        .how-it-works {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

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

        .work-step {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background-color: white;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.3s ease;
        }

        .work-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .work-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--carmine-pink), var(--orange));
        }

        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--space-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
            position: relative;
        }

        .step-number::after {
            content: '';
            position: absolute;
            width: 70px;
            height: 70px;
            border-radius: 50%;
            border: 2px dashed var(--seaweed);
            opacity: 0.3;
            animation: pulse 2s infinite;
        }

        .work-step h4 {
            font-size: 1.4rem;
            color: var(--space-blue);
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .work-step p {
            color: #666;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .works-cta {
            text-align: center;
            margin-top: 4rem;
        }

        /* See It In Action Section */
        .see-in-action {
            background-color: #f8f9fa;
        }

        .video-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .video-tab {
            padding: 1.2rem 2.5rem;
            background-color: white;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            min-width: 200px;
        }

        .video-tab.active {
            background-color: var(--space-blue);
            color: white;
            border-color: var(--space-blue);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(1, 32, 63, 0.2);
        }

        .video-tab:hover:not(.active) {
            border-color: var(--space-blue);
            color: var(--space-blue);
            transform: translateY(-3px);
        }

        .video-tab i {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .video-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .video-content.active {
            display: block;
        }

        .video-container {
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            max-width: 1000px;
            margin: 0 auto;
        }

        .video-player {
            position: relative;
            height: 500px;
            background: linear-gradient(135deg, var(--space-blue) 0%, var(--seaweed) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-placeholder {
            text-align: center;
            color: white;
        }

        .video-placeholder i {
            font-size: 5rem;
            margin-bottom: 1.5rem;
            opacity: 0.8;
        }

        .video-placeholder h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .video-placeholder p {
            font-size: 1.2rem;
            opacity: 0.9;
        }

        .video-info {
            padding: 2rem 3rem;
        }

        .video-info h4 {
            font-size: 1.5rem;
            color: var(--space-blue);
            margin-bottom: 1rem;
        }

        .video-info p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #666;
        }

        .video-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-item i {
            color: var(--carmine-pink);
            font-size: 1.2rem;
            margin-top: 0.2rem;
        }

        /* Unified Benefits Section */
        .unified-benefits {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .benefit-pillars {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pillar-card {
            background-color: white;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .pillar-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
        }

        .pillar-card.professionalism::before {
            background: linear-gradient(90deg, var(--carmine-pink), var(--orange));
        }

        .pillar-card.visibility::before {
            background: linear-gradient(90deg, var(--seaweed), #00b4d8);
        }

        .pillar-card.trust::before {
            background: linear-gradient(90deg, var(--forest-green), #2a9d8f);
        }

        .pillar-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .professionalism .pillar-icon {
            background: linear-gradient(135deg, var(--carmine-pink), var(--orange));
        }

        .visibility .pillar-icon {
            background: linear-gradient(135deg, var(--seaweed), #00b4d8);
        }

        .trust .pillar-icon {
            background: linear-gradient(135deg, var(--forest-green), #2a9d8f);
        }

        .pillar-card h3 {
            font-size: 1.8rem;
            color: var(--space-blue);
            margin-bottom: 1rem;
        }

        .pillar-card .sub-headline {
            font-size: 1.1rem;
            color: var(--seaweed);
            font-weight: 600;
            margin-bottom: 1.5rem;
            line-height: 1.4;
        }

        .pillar-card p {
            color: #666;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .pillar-stats {
            display: flex;
            gap: 1.5rem;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid #eee;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--space-blue);
        }

        .stat-label {
            font-size: 0.9rem;
            color: #888;
            margin-top: 0.3rem;
        }

        /* Audience-Specific Benefits Section */
        .audience-benefits {
            background-color: white;
        }

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

        .audience-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 3rem;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .audience-tab {
            padding: 1.2rem 2.5rem;
            background-color: #f8f9fa;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            display: flex;
            align-items: center;
            gap: 1rem;
            text-align: center;
        }

        .audience-tab.active {
            background-color: var(--space-blue);
            color: white;
            border-color: var(--space-blue);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(1, 32, 63, 0.2);
        }

        .audience-tab:hover:not(.active) {
            border-color: var(--space-blue);
            color: var(--space-blue);
            transform: translateY(-3px);
        }

        .audience-tab i {
            font-size: 1.5rem;
        }

        .audience-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .audience-content.active {
            display: block;
        }

        .audience-card {
            background-color: white;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border: 1px solid #e9ecef;
            max-width: 1000px;
            margin: 0 auto;
        }

        .audience-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }

        .audience-header h3 {
            font-size: 2rem;
            color: var(--space-blue);
            margin-bottom: 1rem;
        }

        .audience-header p {
            font-size: 1.2rem;
            color: var(--seaweed);
            max-width: 600px;
            margin: 0 auto;
        }

        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .benefit-item i {
            color: var(--carmine-pink);
            font-size: 1.2rem;
            margin-top: 0.2rem;
            min-width: 24px;
        }

        .benefit-item p {
            color: #666;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .audience-cta {
            text-align: center;
            margin-top: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid #e9ecef;
        }

        /* News Articles Section */
        .news-articles {
            background-color: #f8f9fa;
            padding: 4rem 2rem;
        }

        .news-container {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }

        .news-container h3 {
            font-size: 2rem;
            color: var(--space-blue);
            margin-bottom: 1.5rem;
        }

        .news-container p {
            font-size: 1.2rem;
            color: var(--seaweed);
            max-width: 700px;
            margin: 0 auto 2rem;
        }

        .news-cta {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        /* Problem Section */
        .problem {
            background-color: #f8f9fa;
        }

        .problem-content {
            max-width: 1000px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .problem-text h3 {
            font-size: 2rem;
            color: var(--space-blue);
            margin-bottom: 1.5rem;
        }

        .problem-text p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: #555;
        }

        .problem-list {
            list-style: none;
        }

        .problem-list li {
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            font-size: 1.1rem;
        }

        .problem-list li::before {
            content: '?';
            position: absolute;
            left: 0;
            top: 0;
            width: 24px;
            height: 24px;
            background-color: var(--carmine-pink);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .problem-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .problem-visual img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Solution Section */
        .solution-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .step {
            text-align: center;
            padding: 2rem 1.5rem;
            border-radius: 10px;
            background-color: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .step:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--carmine-pink), var(--orange));
        }

        .step-number {
            width: 50px;
            height: 50px;
            background-color: var(--space-blue);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin: 0 auto 1.5rem;
        }

        .step h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--space-blue);
        }

        .step p {
            color: #666;
            line-height: 1.6;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--space-blue) 0%, var(--seaweed) 100%);
            color: white;
            text-align: center;
            padding: 5rem 2rem;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
        }

        .cta-buttons-large {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        /* Footer */
        footer {
            background-color: var(--midnight-black);
            color: white;
            padding: 4rem 2rem 2rem;
        }

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

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--pure-white);
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--carmine-pink);
            bottom: 0;
            left: 0;
        }

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

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

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

        .footer-column ul li a:hover {
            color: var(--carmine-pink);
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background-color: var(--carmine-pink);
            transform: translateY(-3px);
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0;
            padding-top: 2rem;
            border-top: 1px solid #333;
            text-align: center;
            color: #bbb;
            font-size: 0.9rem;
        }
        .floating-shapes {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

         .shape {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        .shape:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .shape:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }
        
        .shape:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

        .trust-security {
    padding: 80px 20px;
    background-color: #f9fafb;
    text-align: center;
}

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

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

.trust-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.trust-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.trust-card p {
    color: #718096;
    line-height: 1.6;
}

.trust-commitment {
    background: #2d3748;
    color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    margin: 0 auto;
}

.trust-commitment p {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
}

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

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

        @keyframes float {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.3;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.5;
            }
            100% {
                transform: scale(1);
                opacity: 0.3;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .works-steps {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .solution-highlights {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .problem-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .solution-steps {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .video-player {
                height: 400px;
            }
            
            .benefit-pillars {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .audience-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .audience-tab {
                width: 100%;
                max-width: 300px;
            }
            
            .benefits-list {
                grid-template-columns: 1fr;
            }
            
            .works-steps {
                grid-template-columns: 1fr;
                max-width: 600px;
            }
            
            .solution-highlights {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .cta-buttons {
                display: none;
            }
            
            .mobile-menu {
                display: block;
            }
            
            .hero-carousel {
                height: 80vh;
            }
            
            .carousel-content h1 {
                font-size: 2.5rem;
            }
            
            .carousel-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .solution-steps {
                grid-template-columns: 1fr;
            }
            
            .video-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .video-tab {
                width: 100%;
                max-width: 300px;
            }
            
            .video-player {
                height: 300px;
            }
            
            .video-info {
                padding: 1.5rem;
            }
            
            .cta-buttons-large {
                flex-direction: column;
                align-items: center;
            }
            
            .pillar-card {
                padding: 2rem;
            }
            
            .audience-card {
                padding: 2rem;
            }
            
            .trust-security {
                padding: 60px 15px;
            }
            
            .trust-grid {
                grid-template-columns: 1fr;
            }
            
            .solution-header h2 {
                font-size: 2rem;
            }
            
            .solution-header p {
                font-size: 1.1rem;
            }
            
            .work-step {
                padding: 2rem 1rem;
            }
        }

        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            section {
                padding: 4rem 1rem;
            }
            
            .hero-carousel {
                padding: 8rem 1rem 4rem;
                height: 70vh;
            }
            
            .carousel-content h1 {
                font-size: 2rem;
            }
            
            .carousel-content p {
                font-size: 1.1rem;
            }
            
            .video-player {
                height: 250px;
            }
            
            .pillar-card {
                padding: 1.5rem;
            }
            
            .pillar-stats {
                flex-direction: column;
                gap: 1rem;
            }
            
            .audience-card {
                padding: 1.5rem;
            }
            
            .audience-header h3 {
                font-size: 1.8rem;
            }
            
            .news-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .highlight-item {
                padding: 1.5rem;
            }
            
            .highlight-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }
