.container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Header Section */
        header {
            padding: 40px 0;
            background-color: #f5f1ec;
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .logo-circle {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            border: 2px solid #d4c5b9;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .logo-circle svg {
            width: 60px;
            height: 60px;
            fill: #8b7355;
        }

        .hero-text h1 {
            font-size: 4rem;
            font-weight: 400;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background-color: #a8c5c5;
            color: #2d2d2d;
            text-decoration: none;
            border-radius: 30px;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #8fb0b0;
        }

        /* Video Section */
        .video-section {
            padding: 80px 0;
            background-color: #f5f1ec;
        }

        .video-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .video-text {
            flex: 1;
        }

        .video-text h2 {
            font-size: 3rem;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .video-text a {
            color: #2d2d2d;
            text-decoration: none;
            font-size: 1.1rem;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .video-placeholder {
            flex: 1;
            position: relative;
            background: linear-gradient(135deg, #3a3a3a 0%, #1a1a1a 100%);
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 16/9;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-logo {
            font-family: 'Brush Script MT', cursive;
            font-size: 4rem;
            color: white;
            position: relative;
            z-index: 2;
        }

        .play-button {
            width: 80px;
            height: 80px;
            background-color: rgba(255, 255, 255, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: transform 0.3s;
            position: absolute;
        }

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

        /* Features Section */
        .features-section {
            padding: 80px 0;
            background-color: #f5f1ec;
        }

        .features-section h2 {
            font-size: 3rem;
            font-weight: 400;
            margin-bottom: 60px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .feature-card {
            padding: 40px 30px;
            background-color: transparent;
        }

        .feature-card.highlight {
            background-color: #fffacd;
            border-radius: 30px;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 15px;
        }

        .feature-card p {
            font-size: 1.1rem;
            color: #5a5a5a;
            line-height: 1.7;
        }

        /* Results Section */
        .results-section {
            padding: 80px 0;
            background-color: #f5f1ec;
        }

        .results-section h2 {
            font-size: 3rem;
            font-weight: 400;
            margin-bottom: 60px;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .result-card {
            padding: 60px 40px;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .result-card::before {
            content: '';
            position: absolute;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 100px;
            border-radius: 50%;
            opacity: 0.3;
        }

        .result-card:nth-child(1) {
            background-color: #3d1f1f;
            color: white;
        }

        .result-card:nth-child(1)::before {
            background-color: #ff6b6b;
        }

        .result-card:nth-child(2) {
            background-color: #1f2a4d;
            color: white;
        }

        .result-card:nth-child(2)::before {
            background-color: #6b8cff;
        }

        .result-card:nth-child(3) {
            background-color: #0d4d4d;
            color: white;
        }

        .result-card:nth-child(3)::before {
            background-color: #4db8a8;
        }

        .result-card:nth-child(4) {
            background-color: #3d3d1f;
            color: white;
        }

        .result-card:nth-child(4)::before {
            background-color: #d4c54f;
        }

        .result-card h3 {
            font-size: 1.8rem;
            font-weight: 400;
            line-height: 1.4;
            position: relative;
            z-index: 1;
        }

        /* Use Cases Section */
        .use-cases-section {
            padding: 80px 0;
            background-color: #f5f1ec;
        }

        .use-cases-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
        }

        .use-cases-header h2 {
            font-size: 3rem;
            font-weight: 400;
        }

        .use-cases-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .use-case-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 30px 0;
            border-bottom: 1px solid #d4c5b9;
            font-size: 1.5rem;
        }

        .use-case-icon {
            width: 40px;
            height: 40px;
        }

        /* Specialties Section */
        .specialties-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #134d4d 0%, #0f3a3a 100%);
            color: white;
            position: relative;
        }

        .specialties-content {
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .about-label {
            font-size: 0.85rem;
            letter-spacing: 4px;
            margin-bottom: 25px;
            opacity: 0.9;
            font-weight: 500;
        }

        .specialties-title {
            font-size: 2.8rem;
            font-weight: 400;
            margin-bottom: 0;
            display: inline;
        }

        .rotating-specialty {
            font-size: 2.8rem;
            font-weight: 400;
            color: #8fb8b8;
            min-height: 60px;
            display: inline-block;
            margin-left: 10px;
        }

        .cta-button-specialty {
            display: inline-block;
            padding: 12px 35px;
            background-color: #a8c5c5;
            color: #2d2d2d;
            text-decoration: none;
            border-radius: 30px;
            font-size: 1rem;
            transition: background-color 0.3s;
            margin-left: 20px;
            vertical-align: middle;
        }

        .cta-button-specialty:hover {
            background-color: #8fb0b0;
        }

        .specialties-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 12px 20px;
            margin-top: 50px;
            font-size: 0.95rem;
            max-width: 1100px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }

        .specialty-item {
            position: relative;
            white-space: nowrap;
        }

        .wave-text {
            display: inline-block;
            animation: wave 3s ease-in-out infinite;
        }

        .specialty-separator {
            color: rgba(255, 255, 255, 0.4);
            font-weight: 300;
        }

        @keyframes wave {
            0%, 100% {
                transform: translateY(0);
            }
            25% {
                transform: translateY(-6px);
            }
            75% {
                transform: translateY(6px);
            }
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2.5rem;
            }

            .video-content {
                flex-direction: column;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .results-grid {
                grid-template-columns: 1fr;
            }

            .specialties-list {
                flex-direction: column;
            }
        }