

        /* ========== BYTECASTLE ABOUT PAGE - CONFLICT-FREE STYLES ========== */
        /* All classes are prefixed with 'bc-about-' to prevent conflicts */
        
        /* Base Container */
        .bc-about-container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .bc-about-section {
            padding: 5rem 0;
            position: relative;
        }

        /* Unique Title Styles */
        .bc-about-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .bc-about-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
            border-radius: var(--radius-full);
            animation: bcAboutTitleLine 1s ease-out forwards;
        }

        .bc-about-subtitle {
            font-size: 1.125rem;
            color: var(--neutral-600);
            margin-bottom: 3rem;
            max-width: 600px;
        }

        /* Custom Animations */
        @keyframes bcAboutFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        @keyframes bcAboutPulse {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.05); opacity: 0.9; }
            100% { transform: scale(1); opacity: 1; }
        }

        @keyframes bcAboutSlideUp {
            from { 
                opacity: 0; 
                transform: translateY(30px); 
            }
            to { 
                opacity: 1; 
                transform: translateY(0); 
            }
        }

        @keyframes bcAboutTitleLine {
            from { width: 0; }
            to { width: 60px; }
        }

        @keyframes bcAboutRotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Hero Section */
        .bc-about-hero {
            padding: 8rem 0 6rem;
            background: linear-gradient(135deg, var(--neutral-100) 0%, var(--white) 100%);
            position: relative;
            overflow: hidden;
        }

        .bc-about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
            opacity: 0.03;
            clip-path: polygon(100% 0, 0 0, 100% 100%);
        }

        .bc-about-hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, var(--primary-blue-light) 0%, transparent 70%);
            opacity: 0.1;
            animation: bcAboutFloat 8s ease-in-out infinite;
        }

        .bc-about-hero-content {
            position: relative;
            z-index: 2;
        }

        .bc-about-hero-title {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--neutral-900);
            max-width: 800px;
            animation: bcAboutSlideUp 1s ease-out;
        }

        .bc-about-hero-title span {
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }

        .bc-about-hero-title span::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--accent-teal-light), transparent);
            border-radius: var(--radius-full);
        }

        .bc-about-hero-description {
            font-size: 1.25rem;
            color: var(--neutral-600);
            max-width: 700px;
            margin-bottom: 2.5rem;
            animation: bcAboutSlideUp 1s ease-out 0.2s both;
        }

        .bc-about-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
            color: var(--white);
            padding: 0.75rem 1.75rem;
            border-radius: var(--radius-full);
            font-weight: 600;
            margin-bottom: 2.5rem;
            font-size: 0.875rem;
            letter-spacing: 0.5px;
            box-shadow: var(--shadow-md);
            animation: bcAboutSlideUp 0.8s ease-out;
            position: relative;
            overflow: hidden;
        }

        .bc-about-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s;
        }

        .bc-about-badge:hover::before {
            left: 100%;
        }

        /* Stats Section */
        .bc-about-stats {
            background: var(--white);
            border-bottom: 1px solid var(--neutral-200);
        }

        .bc-about-stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
        }

        .bc-about-stat-card {
            text-align: center;
            padding: 2.5rem 1.5rem;
            border-radius: var(--radius-xl);
            background: var(--white);
            border: 2px solid var(--neutral-100);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
            animation: bcAboutSlideUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .bc-about-stat-card:nth-child(1) { animation-delay: 0.1s; }
        .bc-about-stat-card:nth-child(2) { animation-delay: 0.2s; }
        .bc-about-stat-card:nth-child(3) { animation-delay: 0.3s; }
        .bc-about-stat-card:nth-child(4) { animation-delay: 0.4s; }

        .bc-about-stat-card:hover {
            border-color: var(--primary-blue);
            box-shadow: var(--shadow-xl);
            transform: translateY(-10px);
        }

        .bc-about-stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-teal));
            border-radius: var(--radius-full) var(--radius-full) 0 0;
        }

        .bc-about-stat-number {
            font-size: 3.25rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-bottom: 0.5rem;
            line-height: 1;
        }

        .bc-about-stat-label {
            font-size: 1rem;
            color: var(--neutral-600);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Story Section */
        .bc-about-story {
            background: var(--white);
            position: relative;
        }

        .bc-about-story::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%233b82f6' fill-opacity='0.03' fill-rule='evenodd'/%3E");
            opacity: 0.6;
            z-index: 0;
        }

        .bc-about-story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .bc-about-story-text h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            animation: bcAboutSlideUp 0.8s ease-out;
        }

        .bc-about-story-text p {
            margin-bottom: 1.5rem;
            color: var(--neutral-700);
            animation: bcAboutSlideUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .bc-about-story-text p:nth-child(2) { animation-delay: 0.1s; }
        .bc-about-story-text p:nth-child(3) { animation-delay: 0.2s; }
        .bc-about-story-text p:nth-child(4) { animation-delay: 0.3s; }

        .bc-about-story-highlight {
            background: var(--white);
            padding: 3rem;
            border-radius: var(--radius-xl);
            border: 2px solid var(--primary-blue);
            margin-top: 2.5rem;
            position: relative;
            box-shadow: var(--shadow-lg);
            animation: bcAboutSlideUp 0.8s ease-out 0.4s both;
            overflow: hidden;
        }

        .bc-about-story-highlight::before {
            content: '"';
            position: absolute;
            top: -30px;
            left: 30px;
            font-size: 6rem;
            color: var(--primary-blue);
            font-family: serif;
            line-height: 1;
            background: var(--white);
            padding: 0 15px;
            opacity: 0.3;
            z-index: 1;
        }

        .bc-about-story-highlight::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, var(--primary-blue-light), transparent);
            border-radius: 0 0 0 100%;
            opacity: 0.1;
        }

        .bc-about-story-highlight p {
            font-style: italic;
            color: var(--neutral-800);
            font-size: 1.375rem;
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }

        .bc-about-story-visual {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
            border-radius: var(--radius-2xl);
            padding: 4rem 3rem;
            box-shadow: var(--shadow-2xl);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            min-height: 450px;
            position: relative;
            overflow: hidden;
            animation: bcAboutSlideUp 0.8s ease-out 0.5s both;
        }

        .bc-about-story-visual::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: var(--white);
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            opacity: 0.1;
            top: -150px;
            right: -150px;
            animation: bcAboutRotate 20s linear infinite;
        }

        .bc-about-story-visual::after {
            content: '';
            position: absolute;
            width: 250px;
            height: 250px;
            background: var(--white);
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
            opacity: 0.05;
            bottom: -80px;
            left: -80px;
            animation: bcAboutRotate 25s linear infinite reverse;
        }

        .bc-about-story-icon {
            font-size: 8rem;
            color: var(--white);
            margin-bottom: 2rem;
            opacity: 0.9;
            z-index: 2;
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
            animation: bcAboutFloat 4s ease-in-out infinite;
        }

        .bc-about-story-visual h3 {
            color: var(--white);
            font-size: 1.75rem;
            text-align: center;
            z-index: 2;
            font-weight: 600;
        }

        /* Values Section */
        .bc-about-values {
            background: var(--neutral-50);
            position: relative;
            overflow: hidden;
        }

        .bc-about-values::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent 30%, rgba(59, 130, 246, 0.03) 100%);
        }

        .bc-about-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        .bc-about-value-card {
            background: var(--white);
            padding: 3rem;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-base);
            border-top: 5px solid transparent;
            position: relative;
            overflow: hidden;
            animation: bcAboutSlideUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .bc-about-value-card:nth-child(1) { 
            border-top-color: var(--primary-blue);
            animation-delay: 0.1s;
        }

        .bc-about-value-card:nth-child(2) { 
            border-top-color: var(--accent-teal);
            animation-delay: 0.2s;
        }

        .bc-about-value-card:nth-child(3) { 
            border-top-color: var(--accent-amber);
            animation-delay: 0.3s;
        }

        .bc-about-value-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-2xl);
        }

        .bc-about-value-icon {
            width: 80px;
            height: 80px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            position: relative;
            z-index: 2;
            transition: transform var(--transition-base);
        }

        .bc-about-value-card:hover .bc-about-value-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .bc-about-value-card:nth-child(1) .bc-about-value-icon {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.2));
            color: var(--primary-blue);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
        }

        .bc-about-value-card:nth-child(2) .bc-about-value-icon {
            background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.2));
            color: var(--accent-teal);
            box-shadow: 0 4px 12px rgba(13, 148, 136, 0.2);
        }

        .bc-about-value-card:nth-child(3) .bc-about-value-icon {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.2));
            color: var(--accent-amber);
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
        }

        .bc-about-value-card h3 {
            font-size: 1.75rem;
            margin-bottom: 1.25rem;
            position: relative;
            z-index: 2;
        }

        .bc-about-value-card p {
            color: var(--neutral-600);
            position: relative;
            z-index: 2;
        }

        /* Why Choose Us Section */
        .bc-about-why {
            background: var(--white);
            position: relative;
        }

        .bc-about-why::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--accent-teal-light) 0%, transparent 70%);
            opacity: 0.05;
            border-radius: 50%;
        }

        .bc-about-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .bc-about-feature {
            display: flex;
            gap: 1.75rem;
            padding: 2.5rem;
            border-radius: var(--radius-xl);
            background: var(--white);
            border: 1px solid var(--neutral-200);
            transition: all var(--transition-base);
            position: relative;
            overflow: hidden;
            animation: bcAboutSlideUp 0.8s ease-out;
            animation-fill-mode: both;
        }

        .bc-about-feature:nth-child(1) { animation-delay: 0.1s; }
        .bc-about-feature:nth-child(2) { animation-delay: 0.2s; }
        .bc-about-feature:nth-child(3) { animation-delay: 0.3s; }
        .bc-about-feature:nth-child(4) { animation-delay: 0.4s; }
        .bc-about-feature:nth-child(5) { animation-delay: 0.5s; }

        .bc-about-feature:hover {
            border-color: var(--primary-blue);
            box-shadow: var(--shadow-xl);
            transform: translateY(-8px);
        }

        .bc-about-feature::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-blue), var(--accent-teal));
            opacity: 0;
            transition: opacity var(--transition-base);
        }

        .bc-about-feature:hover::before {
            opacity: 1;
        }

        .bc-about-feature-icon {
            width: 70px;
            height: 70px;
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, var(--primary-blue), var(--accent-teal));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.75rem;
            flex-shrink: 0;
            transition: all var(--transition-base);
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .bc-about-feature:hover .bc-about-feature-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }

        .bc-about-feature-content h3 {
            font-size: 1.375rem;
            margin-bottom: 0.75rem;
        }

        .bc-about-feature-content p {
            color: var(--neutral-600);
            font-size: 1rem;
        }

        /* Performance Stats */
        .bc-about-performance {
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
            border-radius: var(--radius-2xl);
            padding: 4.5rem 3rem;
            margin-top: 2rem;
            color: var(--white);
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            animation: bcAboutSlideUp 0.8s ease-out 0.6s both;
        }

        .bc-about-performance::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.08' fill-rule='evenodd'/%3E");
            opacity: 0.3;
        }

        .bc-about-performance-item {
            position: relative;
            z-index: 2;
        }

        .bc-about-performance-item h3 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            color: var(--white);
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .bc-about-performance-item p {
            font-size: 1.125rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* CTA Section */
        .bc-about-cta {
            background: linear-gradient(135deg, var(--neutral-50), var(--white));
            text-align: center;
            padding: 7rem 0;
            position: relative;
            overflow: hidden;
        }

        .bc-about-cta::before {
            content: '';
            position: absolute;
            bottom: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--accent-teal) 0%, transparent 70%);
            opacity: 0.05;
            border-radius: 50%;
        }

        .bc-about-cta-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            animation: bcAboutSlideUp 0.8s ease-out;
        }

        .bc-about-cta-content p {
            font-size: 1.375rem;
            color: var(--neutral-600);
            max-width: 700px;
            margin: 0 auto 3rem;
            animation: bcAboutSlideUp 0.8s ease-out 0.2s both;
        }

        .bc-about-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
            color: var(--white);
            padding: 1.25rem 3rem;
            border-radius: var(--radius-full);
            font-weight: 600;
            text-decoration: none;
            transition: all var(--transition-base);
            box-shadow: var(--shadow-lg);
            border: none;
            font-size: 1.125rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            animation: bcAboutSlideUp 0.8s ease-out 0.4s both;
        }

        .bc-about-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.7s;
        }

        .bc-about-cta-button:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-2xl);
            background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
        }

        .bc-about-cta-button:hover::before {
            left: 100%;
        }

        .bc-about-cta-button i {
            margin-left: 12px;
            transition: transform var(--transition-base);
        }

        .bc-about-cta-button:hover i {
            transform: translateX(8px);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .bc-about-hero-title {
                font-size: 3.25rem;
            }
        }

        @media (max-width: 992px) {
            .bc-about-hero-title {
                font-size: 2.75rem;
            }
            
            .bc-about-story-content {
                grid-template-columns: 1fr;
                gap: 4rem;
            }
            
            .bc-about-story-visual {
                min-height: 350px;
                order: -1;
            }
            
            .bc-about-title {
                font-size: 2.25rem;
            }
        }

        @media (max-width: 768px) {
            .bc-about-section {
                padding: 4rem 0;
            }
            
            .bc-about-hero {
                padding: 6rem 0 4rem;
            }
            
            .bc-about-hero-title {
                font-size: 2.5rem;
            }
            
            .bc-about-hero-description {
                font-size: 1.25rem;
            }
            
            .bc-about-title {
                font-size: 2rem;
            }
            
            .bc-about-performance {
                padding: 3.5rem 2rem;
            }
            
            .bc-about-performance-item h3 {
                font-size: 2.5rem;
            }
            
            .bc-about-value-card, .bc-about-feature {
                padding: 2.25rem;
            }
            
            .bc-about-cta-content h2 {
                font-size: 2.5rem;
            }
            
            .bc-about-cta-content p {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 576px) {
            .bc-about-hero-title {
                font-size: 2.125rem;
            }
            
            .bc-about-stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .bc-about-stat-number {
                font-size: 2.75rem;
            }
            
            .bc-about-features-grid {
                grid-template-columns: 1fr;
            }
            
            .bc-about-performance {
                grid-template-columns: repeat(2, 1fr);
                padding: 3rem 1.5rem;
            }
            
            .bc-about-story-highlight {
                padding: 2.25rem;
            }
            
            .bc-about-story-highlight p {
                font-size: 1.25rem;
            }
            
            .bc-about-cta-button {
                padding: 1.125rem 2.5rem;
                font-size: 1rem;
            }
        }

        @media (max-width: 400px) {
            .bc-about-stats-grid {
                grid-template-columns: 1fr;
            }
            
            .bc-about-performance {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
  
   