 :root {
            --primary-color: var(--brand-primary);
            --secondary-color: var(--brand-hover);
        }

        body {
            margin: 0;
            padding: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-hover) 100%);
            min-height: 100vh;
        }

        .page-header {
            background: rgba(255, 255, 255, 0.1);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .header-logo img {
            height: 40px;
            width: auto;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .header-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-inverse);
        }

        .back-btn {
            background: var(--card-bg);
            color: var(--brand-primary);
            border: none;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .back-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .content-wrapper {
            max-width: 1200px;
            margin: 3rem auto;
            padding: 0 2rem 3rem;
        }

        .page-title {
            text-align: center;
            color: var(--text-inverse);
            font-size: 2.5rem;
            margin-bottom: 3rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: var(--service-color);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .service-icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .service-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--service-color);
            margin-bottom: 1rem;
            text-align: center;
        }

        .service-description {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            padding: 0;
        }

        .service-features li {
            padding: 0.5rem 0;
            color: var(--text-primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-features li::before {
            content: '✓';
            color: var(--service-color);
            font-weight: 700;
            font-size: 1.2rem;
        }

        @media (max-width: 768px) {
            .page-title {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
        }

/* Auto-extracted inline styles from templates/info/services.html */
.ic-d7467e3d { --service-color: var(--brand-primary); }
.ic-a05847e8 { --service-color: var(--status-success); }
.ic-74074579 { --service-color: var(--status-danger); }
.ic-f4ac3dc6 { --service-color: var(--status-info); }
.ic-7a596f23 { --service-color: var(--status-warning); }
.ic-fb654591 { --service-color: #F97316; }
