        .services-page-hero {
            padding: 4rem 0 3rem;
            text-align: center;
            color: #2c3e50;
        }

        .services-page-hero h1 {
            font-size: clamp(2rem, 4vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }

        .services-page-hero p {
            font-size: 1.15rem;
            opacity: 0.95;
            max-width: 560px;
            margin: 0 auto;
        }

        .services-page-section {
            padding: 5rem 0;
            background: #f8f9fa;
            overflow: clip;
        }

        .services-4-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 1rem;
        }

        @media (max-width: 768px) {
            .services-4-grid {
                grid-template-columns: 1fr;
            }
        }

        .service-card-large {
            background: #fff;
            border-radius: 14px;
            overflow: clip;
            box-shadow: 0 8px 28px rgba(0,0,0,0.1);
            transition: opacity 0.4s ease;
            border: 1px solid rgba(0,0,0,0.06);
            display: flex;
            flex-direction: column;
            opacity: 0;
        }

        .service-card-large.visible {
            opacity: 1;
        }

        .service-card-img {
            height: 240px;
            background-color: #dde2e8;
            background-position: center;
            background-size: cover;
            background-repeat: no-repeat;
            position: relative;
            overflow: hidden;
            transition: transform 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
            .service-card-large:hover .service-card-img {
            transform: scale(1.05);
        }


        .img-placeholder-text {
            color: #aab0bb;
            font-size: 0.9rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            pointer-events: none;
        }

        .service-card-body {
            padding: 2rem;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card-body h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #222;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .service-card-large:hover .service-card-body h3 {
            color: #ff9800;
        }

        .service-card-body p {
            color: #555;
            line-height: 1.65;
            margin-bottom: 1.5rem;
            flex: 1;
        }

        .service-card-link {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
            color: #333;
            padding: 0.7rem 1.4rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            align-self: flex-start;
            box-shadow: 0 4px 10px rgba(255,152,0,0.25);
        }

        .service-card-link:hover {
            background: linear-gradient(135deg, #333 0%, #555 100%);
            color: #fff;
            transform: translateX(3px);
            box-shadow: 0 6px 16px rgba(0,0,0,0.18);
        }

        @media (hover: none) {
            .service-card-large:hover .service-card-img { transform: none; }
            .service-card-large:hover .service-card-body h3 { color: #222; }
            .service-card-link:hover { transform: none; }
        }