       /* ===== ABOUT PAGE STYLES ===== */
        .about-page {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background-color: #fff;
            color: #212529;
            line-height: 1.6;
            overflow-x: hidden;
        }

        .about-page * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .about-page .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .about-page section {
            padding: 5rem 0;
        }

        .about-page h1, .about-page h2, .about-page h3 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: #10002b;
        }

        .about-page h1 {
            font-size: 3.5rem;
        }

        .about-page h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            text-align: center;
            width: 100%;
        }

        .about-page h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #d87522, #f59e0b);
            border-radius: 2px;
        }

        .about-page h3 {
            font-size: 1.75rem;
        }

        .about-page p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #495057;
        }

        /* About Section */
        .about-page .about-section {
            background: #f8f9fa;
        }

        .about-page .about-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about-page .about-text {
            flex: 1;
        }

        .about-page .about-image {
            flex: 1;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .about-page .about-stats {
            display: flex;
            gap: 2rem;
            margin-top: 2rem;
        }

        .about-page .stat-item {
            text-align: center;
            flex: 1;
        }

        .about-page .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #3c096c;
            display: block;
        }

        .about-page .stat-label {
            font-size: 0.9rem;
            color: #6c757d;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Services Section */
        .about-page .services-section {
            background: #fff;
        }

        .about-page .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 4rem;
        }

        .about-page .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
        }

        .about-page .service-card {
            background: #fff;
            border-radius: 1rem;
            padding: 2.5rem 1.5rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            text-align: center;
            border-top: 4px solid #3c096c;
            position: relative;
            overflow: hidden;
        }

        .about-page .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
        }

        .about-page .service-card h3 {
            margin-bottom: 1rem;
            color: #3c096c;
        }

        /* Process Section */
        .about-page .process-section {
            background: #f8f9fa;
        }

        .about-page .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 3rem;
            position: relative;
        }

        .about-page .process-steps:before {
            content: '';
            position: absolute;
            top: 60px;
            left: 0;
            right: 0;
            height: 3px;
            background: #dee2e6;
            z-index: 1;
        }

        .about-page .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
            padding: 0 1rem;
        }

        .about-page .step-number {
            width: 120px;
            height: 120px;
            background: #fff;
            color: #3c096c;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
            border: 5px solid #f8f9fa;
            transition: all 0.3s ease;
        }

        .about-page .step:hover .step-number {
            background: #3c096c;
            color: #fff;
            transform: scale(1.05);
        }

        .about-page .step-content {
            background: #fff;
            padding: 1.5rem;
            border-radius: 1rem;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        }

        /* Clients Section */
        .about-page .clients-section {
            background: #fff;
        }

        .about-page .client-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 3rem;
            margin-top: 3rem;
        }

        .about-page .client-logo {
            width: 180px;
            height: 100px;
            background: #fff;
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
            padding: 1.5rem;
            transition: all 0.3s ease;
            filter: grayscale(100%);
            opacity: 0.7;
        }

        .about-page .client-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: translateY(-5px);
            box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
        }

        .about-page .client-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Location Section */
        .about-page .location-section {
            background: #f8f9fa;
        }

        .about-page .location-content {
            display: flex;
            align-items: center;
            gap: 4rem;
        }

        .about-page .location-text {
            flex: 1;
        }

        .about-page .location-map {
            flex: 1;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            height: 400px;
            background: linear-gradient(135deg, #f8f9fa, #fff);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-page .location-list {
            list-style: none;
            margin: 1.5rem 0;
        }

        .about-page .location-list li {
            padding: 0.8rem 0;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            align-items: center;
        }

        .about-page .location-list li:before {
            content: '📍';
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-page h1 {
                font-size: 2.8rem;
            }
            
            .about-page h2 {
                font-size: 2.2rem;
            }
            
            .about-page .about-content, .about-page .location-content {
                flex-direction: column;
                gap: 3rem;
            }
            
            .about-page .about-stats {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .about-page .stat-item {
                flex: 0 0 calc(50% - 1rem);
            }
        }

        @media (max-width: 768px) {
            .about-page h1 {
                font-size: 2.3rem;
            }
            
            .about-page h2 {
                font-size: 1.9rem;
            }
            
            .about-page section {
                padding: 3rem 0;
            }
            
            .about-page .process-steps {
                flex-direction: column;
                gap: 2rem;
            }
            
            .about-page .process-steps:before {
                display: none;
            }
            
            .about-page .step-number {
                width: 100px;
                height: 100px;
                font-size: 2rem;
            }
            
            .about-page .client-logos {
                gap: 1.5rem;
            }
            
            .about-page .client-logo {
                width: 140px;
                height: 80px;
                padding: 1rem;
            }
            
            .about-page .stat-item {
                flex: 0 0 100%;
            }
        }

        @media (max-width: 576px) {
            .about-page h1 {
                font-size: 2rem;
            }
            
            .about-page h2 {
                font-size: 1.7rem;
            }
            
            .about-page .container {
                padding: 0 1rem;
            }
            
            .about-page .services-grid {
                grid-template-columns: 1fr;
            }
            
            .about-page .client-logo {
                width: 120px;
                height: 70px;
                padding: 0.8rem;
            }
        }