
        :root {
            --primary-color: #ff6b00;
            --secondary-color: #2c3e50;
            --accent-color: #27ae60;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-color) 0%, #ff8c00 100%);
            color: white;
            padding: 80px 0 40px;
            margin-bottom: 50px;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .page-header h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }

        .page-header .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
            position: relative;
            z-index: 1;
        }

        .page-header .breadcrumb-item a {
            color: white;
            text-decoration: none;
            opacity: 0.9;
        }

        .page-header .breadcrumb-item a:hover {
            opacity: 1;
            text-decoration: underline;
        }

        .page-header .breadcrumb-item.active {
            color: white;
            font-weight: 600;
        }

        .page-header .breadcrumb-item + .breadcrumb-item::before {
            color: white;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 15px;
        }

        .section-title h2 span {
            color: var(--primary-color);
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        /* Services Section */
        .services-main-section {
            padding: 60px 0;
            background: white;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 0px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--primary-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255,107,0,0.1);
            border-color: var(--primary-color);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,107,0,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon {
            background: var(--primary-color);
            transform: rotateY(180deg);
        }

        .service-icon i {
            font-size: 2.5rem;
            color: var(--primary-color);
            transition: all 0.3s ease;
        }

        .service-card:hover .service-icon i {
            color: white;
            transform: rotateY(180deg);
        }

        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .service-features li {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: var(--text-dark);
            font-size: 0.95rem;
        }

        .service-features li i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 1rem;
        }

        /* Partnership Section */
        .partnership-section {
            padding: 60px 0;
            background: var(--light-bg);
        }

        .partnership-section h2 {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 20px;
        }

        .partnership-section h2 span {
            color: var(--primary-color);
        }

        .partnership-section p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .partnership-logos {
            display: flex;
            gap: 40px;
            margin-top: 30px;
        }

        .logo-item {
            text-align: left;
            padding: 20px;
            background: white;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            min-width: 150px;
        }

        .logo-item h5 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

        .logo-item small {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .partnership-image {
            border-radius: 0px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .partnership-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .partnership-image:hover img {
            transform: scale(1.05);
        }

        /* CTA Mini Cards */
        .cta-mini-section {
            padding: 60px 0;
            background: white;
        }

        .cta-mini-card {
            display: block;
            text-align: center;
            padding: 35px 25px;
            background: white;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            height: 100%;
        }

        .cta-mini-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 15px 40px rgba(255,107,0,0.1);
        }

        .cta-mini-card i {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: var(--primary-color);
        }

        .cta-mini-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .cta-mini-card p {
            font-size: 0.95rem;
            color: var(--text-light);
            margin-bottom: 0;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .page-header {
                padding: 60px 0 30px;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .service-card {
                padding: 30px 20px;
            }

            .partnership-section {
                text-align: center;
            }

            .partnership-logos {
                flex-direction: column;
                gap: 20px;
                align-items: center;
            }

            .logo-item {
                text-align: center;
                width: 100%;
                max-width: 250px;
            }
        }