.service-hero {
            background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-accent) 100%);
            padding: 8rem 2rem 6rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            min-height: 80vh;
            position: relative;
            overflow: hidden;
            color: white;
        }

        .service-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            animation: pulse 8s ease-in-out infinite;
        }

        .hero-content {
            color: white;
            position: relative;
            z-index: 2;
            animation: slideInLeft 0.8s ease;
        }

        .service-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            margin-bottom: 2rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            color: white;
        }

        .hero-content p {
            font-size: 1.25rem;
            opacity: 0.95;
            margin-bottom: 2.5rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Override content.html's paragraph color for hero section */
        #ai_post #custom-container-creative-services .service-hero p {
            color: rgba(255, 255, 255, 0.9);
        }

        /* Override content.html's paragraph color for CTA section */
        #ai_post #custom-container-creative-services .cta-section p {
            color: rgba(255, 255, 255, 0.8);
        }
        #ai_post #custom-container-creative-services .cta-section h2 {
            color: white;
        }
        /* Fix secondary button colors on dark background */
        #ai_post #custom-container-creative-services .cta-section .btn-secondary {
            color: white;
            border-color: white;
        }
        #ai_post #custom-container-creative-services .cta-section .btn-secondary:hover {
            background: white;
            color: var(--brand-dark);
        }
        /* Remove underlines from buttons */
        #ai_post #custom-container-creative-services .cta-section .btn {
            text-decoration: none;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .hero-cta .btn {
            text-decoration: none;
        }

        .btn-large {
            padding: 1rem 2.5rem;
            font-size: 1.125rem;
            font-weight: 600;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: white;
            color: #e67e22;
        }

        .hero-visual {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
        }

        .creative-showcase {
            animation: slideInRight 0.8s ease;
        }

        .design-canvas {
            width: 350px;
            height: 250px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
        }

        .canvas-toolbar {
            display: flex;
            gap: 0.5rem;
            padding: 1rem;
            background: rgba(0, 0, 0, 0.05);
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .tool-item {
            width: 35px;
            height: 35px;
            background: rgba(0, 0, 0, 0.1);
            border-radius: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-neutral);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .tool-item.active {
            background: #e67e22;
            color: white;
        }

        .canvas-content {
            height: calc(100% - 60px);
            position: relative;
        }

        .design-preview {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            opacity: 0;
            transition: opacity 1s ease;
            background: linear-gradient(135deg, var(--brand-primary), #ff5520);
            color: white;
            padding: 2rem;
        }

        .design-preview.active {
            opacity: 1;
        }

        .design-brand {
            font-size: 0.875rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            opacity: 0.9;
        }

        .design-headline {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .design-cta {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 1rem;
            font-weight: 600;
            border: 2px solid white;
        }

        .services-overview {
            padding: 6rem 0;
            background: var(--brand-light);
        }

        .services-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 3rem;
            justify-content: center;
        }

        .service-card {
            flex: 0 1 calc(25% - 1.5rem);
            min-width: 280px;
            max-width: 350px;
            background: white;
            padding: 3rem 2rem;
            border-radius: 1rem;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f39c12, #e67e22);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: white;
        }

        .service-card h3 {
            color: var(--brand-dark);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: var(--brand-neutral);
            line-height: 1.6;
        }

        .design-process-section {
            padding: 6rem 0;
        }

        .process-timeline {
            display: flex;
            flex-direction: column;
            gap: 2rem;
            margin-top: 3rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .process-step {
            display: flex;
            gap: 2rem;
            align-items: center;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: #e67e22;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-content {
            background: white;
            padding: 2rem;
            border-radius: 1rem;
            box-shadow: var(--shadow-md);
            flex: 1;
        }

        .step-content h3 {
            color: var(--brand-dark);
            margin-bottom: 1rem;
        }

        .step-content p {
            color: var(--brand-neutral);
            line-height: 1.6;
        }

        .portfolio-section {
            padding: 6rem 0;
            background: var(--brand-light);
        }

        .portfolio-categories {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin: 3rem 0;
            flex-wrap: wrap;
        }

        .category-btn {
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--brand-neutral);
            background: transparent;
            color: var(--brand-neutral);
            border-radius: 2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-btn:hover,
        .category-btn.active {
            background: #e67e22;
            border-color: #e67e22;
            color: white;
        }

        .portfolio-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .portfolio-item {
            flex: 0 1 calc(25% - 1.5rem);
            min-width: 300px;
            max-width: 400px;
            transition: all 0.3s ease;
        }

        .portfolio-item.hidden {
            opacity: 0;
            transform: scale(0.8);
            pointer-events: none;
        }

        .portfolio-card {
            background: white;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: transform 0.3s ease;
        }

        .portfolio-card:hover {
            transform: translateY(-5px);
        }

        .portfolio-image {
            height: 200px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
        }

        .mock-display {
            width: 250px;
            height: 150px;
            border-radius: 0.5rem;
            border: 3px solid #333;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .retail-design { background: linear-gradient(135deg, #e74c3c, #c0392b); }
        .event-design { background: linear-gradient(135deg, #9b59b6, #8e44ad); }
        .restaurant-design { background: linear-gradient(135deg, #f39c12, #d68910); }
        .corporate-design { background: linear-gradient(135deg, #3498db, #2980b9); }

        .display-content {
            text-align: center;
            color: white;
            padding: 1rem;
        }

        .display-content h3 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
            color: white;
        }

        .display-content p {
            font-size: 0.875rem;
            margin-bottom: 0.75rem;
            opacity: 0.9;
        }

        .display-cta {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.75rem;
            font-weight: 600;
            border: 1px solid white;
        }

        .portfolio-info {
            padding: 2rem;
        }

        .portfolio-info h4 {
            color: var(--brand-dark);
            margin-bottom: 0.5rem;
        }

        .portfolio-info p {
            color: var(--brand-neutral);
            margin-bottom: 1rem;
        }

        .portfolio-tag {
            background: #e67e22;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.875rem;
            font-weight: 600;
        }

        .guidelines-section {
            padding: 6rem 0;
        }

        .guidelines-content {
            margin-top: 3rem;
        }

        .guidelines-text {
            text-align: center;
            margin-bottom: 3rem;
        }

        .guidelines-text p {
            font-size: 1.25rem;
            color: var(--brand-neutral);
            max-width: 600px;
            margin: 0 auto;
        }

        .guidelines-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .guideline-item {
            flex: 0 1 calc(25% - 1.5rem);
            min-width: 250px;
            max-width: 320px;
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 1rem;
            box-shadow: var(--shadow-md);
        }

        .guideline-icon {
            width: 60px;
            height: 60px;
            background: #e67e22;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: white;
        }

        .guideline-item h4 {
            color: var(--brand-dark);
            margin-bottom: 0.5rem;
        }

        .guideline-item p {
            color: var(--brand-neutral);
            line-height: 1.6;
        }

        .cta-section {
            padding: 6rem 0;
            background: var(--brand-dark);
            text-align: center;
        }

        .cta-content h2 {
            color: white;
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .cta-content p {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .service-hero {
                grid-template-columns: 1fr;
                text-align: center;
                padding: 6rem 1rem 4rem;
            }

            .design-canvas {
                width: 300px;
                height: 200px;
            }

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

            .process-step {
                flex-direction: column;
                text-align: center;
            }

            .portfolio-categories {
                justify-content: flex-start;
                overflow-x: auto;
                padding-bottom: 1rem;
            }

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

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

            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }
        }
