

.entry-content-wrap{padding:0 !important;}
.entry.single-entry{box-shadow:none !important;background:transparent !important;}
.site-container.content-container{max-width:100% !important;padding:0 !important;}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 85, 153, 0.85), rgba(0, 76, 153, 0.85)), url('https://gcmm.nyc/wp-content/uploads/2025/10/IMG_1919-scaled.jpeg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .hero-content {
            max-width: 1000px;
            margin: 0 auto;
        }

        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            font-weight: 400;
            opacity: 0.95;
        }

        .hero-features {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        /* Benco Badge */
        .benco-badge {
            background: rgba(255,255,255,0.15);
            display: inline-block;
            padding: 20px 40px;
            border-radius: 10px;
            margin-top: 20px;
        }

        .benco-badge-title {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 5px;
            opacity: 0.8;
        }

        .benco-badge-text {
            font-size: 1.3rem;
            font-weight: bold;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Sections */
        section {
            padding: 70px 20px;
        }

        .section-light {
            background: #f8f9fa;
        }

        .section-white {
            background: white;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #0066cc;
            text-align: center;
            font-weight: 700;
        }

        .section-intro {
            font-size: 1.2rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 3rem;
            color: #555;
        }

        /* IT Infrastructure Section */
        .it-infrastructure-section {
            background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
            color: white;
            padding: 80px 20px;
        }

        .it-infrastructure-section h2 {
            color: white;
        }

        .it-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }

        .it-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 12px;
            border: 2px solid rgba(255,255,255,0.2);
        }

        .it-card h3 {
            color: white;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .it-card ul {
            list-style: none;
            padding-left: 0;
        }

        .it-card li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: rgba(255,255,255,0.95);
        }

        .it-card li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: white;
            font-weight: bold;
        }

        /* Location Section */
        .location-section {
            background: white;
            padding: 80px 20px;
        }

        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }

        .location-card {
            background: #f8f9fa;
            padding: 30px;
            border-radius: 12px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .location-card h3 {
            color: #0066cc;
            font-size: 1.6rem;
            margin-bottom: 1rem;
        }

        .location-card ul {
            list-style: none;
            padding-left: 0;
        }

        .location-card li {
            padding: 5px 0;
            color: #666;
        }

        .location-card li:before {
            content: "📍";
            margin-right: 8px;
        }

        .location-link {
            display: inline-block;
            margin-top: 15px;
            color: #0066cc;
            text-decoration: none;
            font-weight: bold;
        }

        .location-link:hover {
            text-decoration: underline;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 3rem;
        }

        .service-card {
            background: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

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

        .service-card h3 {
            color: #0066cc;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            text-align: left;
        }

        .service-card p {
            color: #555;
            margin-bottom: 1rem;
            line-height: 1.7;
        }

        .service-card ul {
            list-style: none;
            padding-left: 0;
        }

        .service-card li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            color: #555;
        }

        .service-card li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0066cc;
            font-weight: bold;
        }

        /* CTA Button */
        .cta-button {
            display: inline-block;
            background: white;
            color: #0066cc;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .final-cta h2 {
            color: white;
            margin-bottom: 1rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 2rem;
            }

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

* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #f8f9fa;
        }

        /* Main Section */
        .it-infrastructure-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 80px 20px;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* Header */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 3rem;
            font-weight: 700;
            color: #0066cc;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .section-header p {
            font-size: 1.25rem;
            color: #6c757d;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Cards Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        /* Individual Card */
        .service-card {
            background: white;
            border-radius: 16px;
            padding: 40px 35px;
            box-shadow: 0 10px 40px rgba(0, 102, 204, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #0066cc, #0099ff);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        /* Card Icon */
        .card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #0066cc, #0099ff);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            color: white;
            margin-bottom: 25px;
        }

        /* Card Title */
        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 20px;
            letter-spacing: -0.5px;
        }

        /* Card List */
        .service-card ul {
            list-style: none;
            padding: 0;
        }

        .service-card li {
            padding: 12px 0;
            padding-left: 32px;
            position: relative;
            color: #4a5568;
            font-size: 1rem;
            line-height: 1.6;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .service-card li:last-child {
            border-bottom: none;
        }

        .service-card li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 12px;
            width: 22px;
            height: 22px;
            background: rgba(0, 102, 204, 0.1);
            color: #0066cc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 12px;
        }

        /* Compliance Card - Full Width */
        .compliance-card {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
            color: white;
        }

        .compliance-card .card-icon {
            background: rgba(255, 255, 255, 0.2);
        }

        .compliance-card h3 {
            color: white;
        }

        .compliance-card li {
            color: rgba(255, 255, 255, 0.95);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .compliance-card li::before {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }

        /* CTA Section */
        .cta-section {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0, 102, 204, 0.08);
        }

        .cta-section h3 {
            font-size: 2rem;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        .cta-section p {
            font-size: 1.1rem;
            color: #6c757d;
            margin-bottom: 30px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-block;
            padding: 16px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            text-align: center;
        }

        .cta-primary {
            background: linear-gradient(135deg, #0066cc, #0099ff);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
        }

        .cta-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 102, 204, 0.4);
        }

        .cta-secondary {
            background: white;
            color: #0066cc;
            border: 2px solid #0066cc;
        }

        .cta-secondary:hover {
            background: #0066cc;
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

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

            .service-card {
                padding: 30px 25px;
            }

            .service-card h3 {
                font-size: 1.3rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .cta-button {
                width: 100%;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .service-card {
            animation: fadeInUp 0.6s ease backwards;
        }

        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
/* Emergency hero fix - override Kadence white backgrounds */
.page .content-area{margin-top:0 !important;margin-bottom:0 !important;}
.page .entry-content-wrap{padding:0 !important;}
.page .entry.single-entry{box-shadow:none !important;background:transparent !important;border:none !important;}
.page .content-bg,.page body.content-style-unboxed .site{background:transparent !important;}
.page .site-container.content-container{max-width:100% !important;width:100% !important;padding:0 !important;}
.hero{background:linear-gradient(135deg,#0f2847 0%,#1a3c6e 50%,#2a5ba8 100%) !important;position:relative;overflow:hidden;padding:100px 0 80px;width:100vw !important;margin-left:calc(-50vw + 50%) !important;}
