        /* Message from Nikki Le Section */
        .message-section {
            background: linear-gradient(135deg, #1B444B 0%, #163a3f 100%);
            padding: 6rem 0;
            color: #ffffff;
        }

        .message-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
            align-items: start;
        }

        .message-left {
            padding-right: 2rem;
        }

        .message-title {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 300;
            margin-bottom: 1rem;
            color: #ffffff;
            line-height: 1.2;
        }

        .message-divider {
            width: 60px;
            height: 3px;
            background: #dc3545;
            margin-bottom: 2rem;
        }

        .message-description {
            font-size: 1.1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2rem;
            font-style: italic;
        }

        .message-quote {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 2rem;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(0, 0, 0, 0.1);
        }

        .message-quote p {
            font-size: 1rem;
            line-height: 1.5;
            color: var(--green700);
            margin: 0;
            font-style: italic;
        }

        .message-right {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .video-player {
            width: 100%;
            max-width: 500px;
            aspect-ratio: 16/9;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .message-video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-placeholder:hover {
            background: linear-gradient(135deg, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0.2) 100%);
        }

        .play-button {
            transition: transform 0.3s ease;
        }

        .video-placeholder:hover .play-button {
            transform: scale(1.1);
        }

        .message-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 0;
            margin-bottom: 3rem;
            width: 100%;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--radius-lg);
            overflow: hidden;
        }

        .feature-box {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 0;
            padding: 2rem;
            backdrop-filter: blur(10px);
            border: none;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
        }

        .feature-box:hover {
            background: rgba(255, 255, 255, 0.12);
        }
        
        .feature-box:last-child {
            border-right: none;
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 1rem;
            line-height: 1.3;
        }

        .feature-description {
            font-size: 0.95rem;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .message-cta {
            text-align: center;
        }

        .transform-button {
            display: inline-block;
            padding: 1rem 2.5rem;
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            text-decoration: none;
            border-radius: var(--radius-pill);
            font-size: 1.1rem;
            font-weight: 600;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .transform-button:hover {
            background: rgba(255, 255, 255, 0.25);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        /* Responsive Design for Message Section */
        @media (max-width: 1200px) {
            .message-content {
                gap: 3rem;
            }
            
            .message-left {
                padding-right: 1rem;
            }
        }

        @media (max-width: 992px) {
            .message-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .message-left {
                padding-right: 0;
                text-align: center;
            }
            
            .message-features {
                grid-template-columns: repeat(3, 1fr);
                gap: 0;
            }
        }

        @media (max-width: 768px) {
            .message-section {
                padding: 4rem 0;
            }
            
            .message-content {
                margin-bottom: 3rem;
            }
            
            .message-quote {
                padding: 1.5rem;
            }
            
            .feature-box {
                padding: 1.5rem;
            }
            
            .message-features {
                grid-template-columns: 1fr;
                gap: 0;
            }
            
            .feature-box {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .feature-box:last-child {
                border-bottom: none;
            }
            
            .transform-button {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
        }
