        /* Services Content */
        .services-hero {
            text-align: center;
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-hero h1 {
            font-size: 3.5rem;
            font-weight: 300;
            color: #3E3D3A;
            margin-bottom: 1.5rem;
            letter-spacing: 0.02em;
        }

        .services-hero p {
            font-size: 1.65rem;
            color: #5A5A57;
            line-height: 2.2;
            max-width: 800px;
            margin: 0 auto;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: rgba(250, 249, 249, 0.9);
            border: 1px solid rgba(0,0,0,0.06);
            border-radius: 4px;
            padding: 2.5rem;
            transition: all 400ms ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #C0735C 0%, #A8856A 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-icon svg {
            width: 32px;
            height: 32px;
            stroke: #F5F3F0;
            stroke-width: 1.5;
            fill: none;
        }

        .service-card h3 {
            font-size: 1.75rem;
            font-weight: 300;
            color: #3E3D3A;
            margin-bottom: 1rem;
            letter-spacing: 0.02em;
        }

        .service-card p {
            font-size: 1rem;
            line-height: 1.8;
            color: #5A5A57;
            margin-bottom: 1.5rem;
        }

        .service-features {
            list-style: none;
            margin-top: 1.5rem;
        }

        .service-features li {
            font-size: 0.95rem;
            color: #5A5A57;
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
        }

        .service-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #C0735C;
            font-weight: bold;
        }
        /* Mobile Styles */
        @media (max-width: 768px) {
            .services-hero h1 {
                font-size: 2.5rem;
            }

            .services-hero p {
                font-size: 1rem;
            }

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

            .service-card {
                padding: 2rem;
            }
        }