  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, sans-serif;
            line-height: 1.6;
            color: #1e293b;
            background: #f8fafc;
        }

        .container {
            max-width:1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

            .page-header {
            position: relative;
            background: url('../images/city.webp') center center/cover no-repeat fixed;
            height:50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #ffffff;
            margin-bottom: 70px;
            overflow: hidden;
        }

        .page-header::before {
            content: "";
            position: absolute;
            inset: 0;
             background: rgba(3, 3, 3, 0.62);
        }

        .page-header .container {
            position: relative;
            z-index: 2;
        }


        .page-header h1 {
            font-size: 58px;
            font-weight: 700;
        }

        .breadcrumb {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            margin-top: 10px;
        }

        .breadcrumb a {
            color: white;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        .breadcrumb .active {
            color: #fde68a;
        }

        /* Section Title */
        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-title h2 {
            font-size: 26px;
            font-weight: 700;
            color: #1e293b;
        }

        .section-title h2 span {
            color: #f97316;
        }

        .section-title p {
            color: #64748b;
            font-size: 16px;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }

        .service-card {
            background: white;
            padding: 24px 20px;
            border: 1px solid #e2e8f0;
            transition: border-color 0.2s;
        }

        .service-card:hover {
            border-color: #f97316;
        }

        .service-icon {
            font-size: 32px;
            color: #f97316;
            margin-bottom: 12px;
        }

        .service-card h3 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #1e293b;
        }

        .service-card p {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            padding: 0;
        }

        .service-features li {
            font-size: 13px;
            color: #475569;
            padding: 3px 0;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-features li i {
            color: #f97316;
            font-size: 12px;
        }

        /* Partnership Section */
        .partnership-section {
            background: white;
            padding: 30px;
            border: 1px solid #e2e8f0;
            margin-bottom: 40px;
        }

        .partnership-section h2 {
            font-size: 22px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 12px;
        }

        .partnership-section h2 span {
            color: #f97316;
        }

        .partnership-section p {
            color: #475569;
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 16px;
        }

        .partners {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .partner-item {
            background: #f8fafc;
            padding: 12px 20px;
            border: 1px solid #e2e8f0;
            text-align: center;
            min-width: 120px;
        }

        .partner-item h5 {
            font-size: 14px;
            font-weight: 600;
            color: #f97316;
        }

        .partner-item small {
            font-size: 12px;
            color: #94a3b8;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .page-header h1 {
                font-size: 45px;
            }

            .partners {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .services-grid {
                grid-template-columns: 1fr;
            }

            .partnership-section {
                padding: 20px;
            }
        }