.about-container {
            position: relative;
            width: 90vw;
            max-width: 1200px;
            min-height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
            backdrop-filter: blur(10px);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-family: 'Arial', sans-serif;
            margin: 2rem auto;
        }

        .about-wrapper {
            display: flex;
            min-height: 500px;
            position: relative;
        }

        .about-image-section {
            flex: 1;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease-out;
            transform: scale(1.05);
        }

        .about-container:hover .about-image {
            transform: scale(1);
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.3) 0%, rgba(118, 75, 162, 0.2) 50%, rgba(102, 126, 234, 0.3) 100%);
            opacity: 0.7;
            transition: opacity 0.5s ease;
        }

        .about-container:hover .image-overlay {
            opacity: 0.5;
        }

        .about-content-section {
            flex: 1;
            padding: 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
        }

        .about-title {
            font-size: 3rem;
            font-weight: bold;
            color: rgb(255, 0, 0);
            margin-bottom: 1.5rem;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease-out 0.3s forwards;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .about-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 0;
            height: 4px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
            border-radius: 2px;
            animation: expandLine 1.5s ease-out 0.8s forwards;
        }

        .about-description {
            font-size: 1.2rem;
            line-height: 1.8;
            color: rgba(0, 0, 0, 0.9);
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateX(-50px);
            animation: slideInLeft 1s ease-out 0.6s forwards;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .about-stats {
            display: flex;
            gap: 2rem;
            margin-top: 1rem;
        }

        .stat-item {
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 1s ease-out forwards;
        }

        .stat-item:nth-child(1) { animation-delay: 0.9s; }
        .stat-item:nth-child(2) { animation-delay: 1.1s; }
        .stat-item:nth-child(3) { animation-delay: 1.3s; }

        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #4ecdc4;
            display: block;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .stat-label {
            font-size: 0.9rem;
            color: rgba(255, 0, 0, 0.8);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top: 0.5rem;
        }

        .floating-elements-about {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1;
        }

        .floating-element-about {
            position: absolute;
            width: 8px;
            height: 8px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 50%;
            animation: floatAbout 8s infinite ease-in-out;
        }

        .decorative-shape {
            position: absolute;
            width: 100px;
            height: 100px;
            border: 2px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            top: 20%;
            right: 10%;
            animation: rotate 20s linear infinite;
        }

        .decorative-shape::before {
            content: '';
            position: absolute;
            width: 60px;
            height: 60px;
            border: 2px solid rgba(78, 205, 196, 0.3);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: rotate 15s linear infinite reverse;
        }

        @keyframes slideInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes expandLine {
            to {
                width: 80px;
            }
        }

        @keyframes floatAbout {
            0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.3; }
            50% { transform: translateY(-80px) rotate(180deg); opacity: 0.8; }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-container {
                width: 95vw;
                min-height: auto;
            }

            .about-wrapper {
                flex-direction: column;
                min-height: auto;
            }

            .about-image-section {
                height: 300px;
                order: 1;
            }

            .about-content-section {
                padding: 2rem;
                order: 2;
            }

            .about-title {
                font-size: 2.2rem;
                margin-bottom: 1rem;
            }

            .about-description {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }

            .about-stats {
                gap: 1.5rem;
                justify-content: center;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.8rem;
            }

            .decorative-shape {
                width: 60px;
                height: 60px;
                top: 10%;
                right: 5%;
            }

            .decorative-shape::before {
                width: 30px;
                height: 30px;
            }
        }

        @media (max-width: 480px) {
            .about-content-section {
                padding: 1.5rem;
            }

            .about-title {
                font-size: 1.8rem;
            }

            .about-description {
                font-size: 1rem;
                line-height: 1.6;
            }

            .about-stats {
                flex-direction: column;
                gap: 1rem;
                align-items: center;
            }

            .stat-item {
                width: 100%;
            }

            .stat-number {
                font-size: 1.8rem;
            }
        }

        @media (min-width: 1400px) {
            .about-container {
                max-width: 1400px;
            }

            .about-content-section {
                padding: 4rem;
            }

            .about-title {
                font-size: 3.5rem;
            }

            .about-description {
                font-size: 1.3rem;
            }

            .stat-number {
                font-size: 3rem;
            }
        }

        /* Reverse layout option */
        .about-container.reverse .about-wrapper {
            flex-direction: row-reverse;
        }

        @media (max-width: 768px) {
            .about-container.reverse .about-wrapper {
                flex-direction: column;
            }
        }