
    /* Managed IT Service Chesapeake - Trust & Reliability Focus */
    :root {
        --primary-red: #dc2626;
        --primary-red-light: #ef4444;
        --primary-red-dark: #991b1b;
        --primary-black: #000000;
        --primary-white: #ffffff;
        --dark-gray: #111827;
        --medium-gray: #374151;
        --light-gray: #f3f4f6;
        --chesapeake-blue: #0a5c7e;
        --coastal-teal: #2c7a6e;
        --premium-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        --smooth-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        --gradient-primary: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
        --gradient-chesapeake: linear-gradient(135deg, #0a5c7e 0%, #06445e 100%);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--primary-black);
        overflow-x: hidden;
        background: var(--primary-white);
        width: 100%;
        position: relative;
    }

    .container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
    }

    /* Hero Section */
    .chesapeake-hero {
        background: linear-gradient(135deg, #ffffff 0%, #f0f7fa 100%);
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
        width: 100%;
        border-bottom: 3px solid var(--primary-red);
    }

    .chesapeake-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 20% 80%, rgba(10, 92, 126, 0.03) 0%, transparent 60%);
        z-index: 1;
    }

    .chesapeake-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: rgba(220, 38, 38, 0.08);
        padding: 10px 24px;
        border-radius: 50px;
        margin-bottom: 30px;
        border: 1px solid rgba(220, 38, 38, 0.15);
        position: relative;
        z-index: 2;
    }

    .chesapeake-badge i {
        color: var(--primary-red);
        font-size: 1rem;
    }

    .chesapeake-badge span {
        color: var(--primary-red);
        font-weight: 600;
        font-size: 0.85rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .chesapeake-title {
        font-size: 3.8rem;
        font-weight: 900;
        color: var(--dark-gray);
        margin-bottom: 25px;
        line-height: 1.2;
        position: relative;
        z-index: 2;
    }

    .chesapeake-title span {
        color: var(--primary-red);
        position: relative;
    }

    .chesapeake-subtitle {
        font-size: 1.3rem;
        color: var(--medium-gray);
        max-width: 800px;
        margin-bottom: 30px;
        line-height: 1.7;
        position: relative;
        z-index: 2;
    }

    .chesapeake-description {
        font-size: 1.1rem;
        color: var(--medium-gray);
        max-width: 800px;
        margin-bottom: 40px;
        line-height: 1.7;
        position: relative;
        z-index: 2;
    }

    /* Speed Indicators */
    .speed-indicators-chesapeake {
        display: flex;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 40px;
        position: relative;
        z-index: 2;
    }

    .speed-item-chesapeake {
        background: white;
        padding: 15px 25px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 12px;
        box-shadow: var(--card-shadow);
        border: 1px solid var(--light-gray);
    }

    .speed-item-chesapeake i {
        color: var(--primary-red);
        font-size: 1.3rem;
    }

    .speed-item-chesapeake .number {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--dark-gray);
    }

    .speed-item-chesapeake .label {
        font-weight: 500;
        color: var(--medium-gray);
    }

    /* Section Headers */
    .section-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
    }

    .section-header h2 {
        font-size: 3rem;
        font-weight: 900;
        color: var(--dark-gray);
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .section-header h2 span {
        color: var(--primary-red);
        position: relative;
    }

    .section-header p {
        font-size: 1.2rem;
        color: var(--medium-gray);
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.7;
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(220, 38, 38, 0.08);
        padding: 8px 20px;
        border-radius: 30px;
        margin-bottom: 20px;
    }

    .section-badge i {
        color: var(--primary-red);
        font-size: 0.9rem;
    }

    .section-badge span {
        color: var(--primary-red);
        font-weight: 600;
        font-size: 0.8rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    /* Feature Grids */
    .feature-grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        margin: 50px 0;
    }

    .feature-grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin: 50px 0;
    }

    .feature-grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        margin: 50px 0;
    }

    /* Service Cards */
    .service-card-chesapeake {
        background: white;
        border-radius: 24px;
        padding: 35px;
        box-shadow: var(--card-shadow);
        transition: var(--smooth-transition);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        height: 100%;
    }

    .service-card-chesapeake::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: transform 0.5s ease;
    }

    .service-card-chesapeake:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(220, 38, 38, 0.12);
        border-color: rgba(220, 38, 38, 0.2);
    }

    .service-card-chesapeake:hover::before {
        transform: scaleX(1);
    }

    .service-icon-chesapeake {
        width: 70px;
        height: 70px;
        background: rgba(220, 38, 38, 0.08);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        transition: var(--smooth-transition);
    }

    .service-card-chesapeake:hover .service-icon-chesapeake {
        background: var(--gradient-primary);
    }

    .service-icon-chesapeake i {
        font-size: 32px;
        color: var(--primary-red);
        transition: var(--smooth-transition);
    }

    .service-card-chesapeake:hover .service-icon-chesapeake i {
        color: white;
    }

    .service-card-chesapeake h3 {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--dark-gray);
        margin-bottom: 15px;
        transition: var(--smooth-transition);
    }

    .service-card-chesapeake:hover h3 {
        color: var(--primary-red);
    }

    .service-card-chesapeake p {
        color: var(--medium-gray);
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    /* Image Cards */
    .image-card {
        background: white;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: var(--premium-shadow);
        transition: var(--smooth-transition);
        margin: 60px 0;
    }

    .image-card:hover {
        transform: translateY(-10px);
    }

    .image-card img {
        width: 100%;
        height: 350px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .image-card:hover img {
        transform: scale(1.02);
    }

    .image-card-content {
        padding: 35px;
    }

    .image-card-content h3 {
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--dark-gray);
        margin-bottom: 15px;
    }

    .image-card-content p {
        color: var(--medium-gray);
        font-size: 1.05rem;
        line-height: 1.7;
    }

    /* Testimonials Carousel Styles */
    .testimonials-carousel {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px 0;
    }

    .carousel-container {
        overflow: hidden;
        position: relative;
    }

    .carousel-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
        gap: 30px;
    }

    .testimonial-card {
        flex: 0 0 calc(50% - 15px);
        background: white;
        border-radius: 24px;
        padding: 35px;
        box-shadow: var(--card-shadow);
        transition: var(--smooth-transition);
        border: 1px solid var(--light-gray);
        position: relative;
        min-height: 320px;
    }

    @media (max-width: 768px) {
        .testimonial-card {
            flex: 0 0 100%;
        }
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--premium-shadow);
        border-color: rgba(220, 38, 38, 0.2);
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 25px;
        font-size: 80px;
        color: rgba(220, 38, 38, 0.1);
        font-family: serif;
        line-height: 1;
    }

    .testimonial-text {
        font-size: 1rem;
        line-height: 1.7;
        color: var(--medium-gray);
        margin-bottom: 25px;
        font-style: italic;
        position: relative;
        z-index: 2;
        padding-left: 30px;
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--light-gray);
    }

    .author-avatar {
        width: 50px;
        height: 50px;
        background: var(--gradient-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 700;
        font-size: 1.1rem;
    }

    .author-info h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--dark-gray);
        margin-bottom: 3px;
    }

    .author-info p {
        font-size: 0.8rem;
        color: var(--medium-gray);
    }

    /* Carousel Navigation */
    .carousel-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-top: 40px;
    }

    .carousel-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: white;
        border: 1px solid var(--light-gray);
        cursor: pointer;
        transition: var(--smooth-transition);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        color: var(--dark-gray);
    }

    .carousel-btn:hover {
        background: var(--gradient-primary);
        border-color: transparent;
        color: white;
        transform: translateY(-2px);
    }

    .carousel-dots {
        display: flex;
        gap: 12px;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--light-gray);
        cursor: pointer;
        transition: var(--smooth-transition);
    }

    .carousel-dot.active {
        background: var(--primary-red);
        width: 25px;
        border-radius: 10px;
    }

    .carousel-dot:hover {
        background: var(--primary-red);
        transform: scale(1.1);
    }

    /* Stats Section */
    .stats-chesapeake {
        background: var(--gradient-chesapeake);
        padding: 80px 0;
        color: white;
        position: relative;
        overflow: hidden;
    }

    .stats-grid-chesapeake {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 30px;
        text-align: center;
    }

    .stat-item-chesapeake {
        padding: 20px;
    }

    .stat-number-chesapeake {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--primary-red);
        margin-bottom: 10px;
    }

    .stat-label-chesapeake {
        font-size: 1.1rem;
        font-weight: 500;
        opacity: 0.9;
    }

    /* Industries Grid */
    .industries-grid-chesapeake {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin: 40px 0;
    }

    .industry-item-chesapeake {
        background: white;
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        transition: var(--smooth-transition);
        border: 1px solid var(--light-gray);
    }

    .industry-item-chesapeake:hover {
        transform: translateY(-5px);
        border-color: var(--primary-red);
        box-shadow: var(--card-shadow);
    }

    .industry-item-chesapeake i {
        font-size: 2rem;
        color: var(--primary-red);
        margin-bottom: 15px;
    }

    .industry-item-chesapeake h4 {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark-gray);
    }

    /* FAQ Section */
    .faq-section-chesapeake {
        padding: 100px 0;
        background: white;
    }

    .faq-grid-chesapeake {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-item-chesapeake {
        background: white;
        border-radius: 20px;
        margin-bottom: 20px;
        overflow: hidden;
        box-shadow: var(--card-shadow);
        border: 1px solid var(--light-gray);
    }

    .faq-question-chesapeake {
        padding: 25px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 700;
        font-size: 1.1rem;
        color: var(--dark-gray);
        transition: var(--smooth-transition);
    }

    .faq-question-chesapeake:hover {
        background: rgba(220, 38, 38, 0.03);
    }

    .faq-question-chesapeake i {
        color: var(--primary-red);
        transition: transform 0.3s ease;
    }

    .faq-question-chesapeake.active i {
        transform: rotate(180deg);
    }

    .faq-answer-chesapeake {
        padding: 0 30px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        color: var(--medium-gray);
        line-height: 1.7;
    }

    .faq-answer-chesapeake.show {
        padding: 0 30px 25px 30px;
        max-height: 500px;
    }

    /* CTA Section */
    .cta-chesapeake {
        background: var(--gradient-primary);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .cta-content-chesapeake {
        position: relative;
        z-index: 2;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .cta-title-chesapeake {
        font-size: 3rem;
        font-weight: 900;
        color: white;
        margin-bottom: 20px;
    }

    .cta-text-chesapeake {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 35px;
        line-height: 1.7;
    }

    .btn-primary-chesapeake {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: white;
        color: var(--primary-red);
        padding: 16px 40px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        transition: var(--smooth-transition);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    .btn-primary-chesapeake:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        gap: 18px;
    }

    .btn-secondary-chesapeake {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: transparent;
        color: white;
        padding: 16px 40px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 700;
        text-decoration: none;
        transition: var(--smooth-transition);
        border: 2px solid white;
        margin-left: 15px;
    }

    .btn-secondary-chesapeake:hover {
        background: white;
        color: var(--primary-red);
        transform: translateY(-3px);
    }

    /* Responsive Design */
    @media screen and (max-width: 1200px) {
        .chesapeake-title {
            font-size: 3.2rem;
        }
        
        .feature-grid-3,
        .feature-grid-4,
        .industries-grid-chesapeake {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .stats-grid-chesapeake {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media screen and (max-width: 992px) {
        .feature-grid-2 {
            grid-template-columns: 1fr;
        }
    }

    @media screen and (max-width: 768px) {
        .container {
            padding-left: 20px;
            padding-right: 20px;
        }
        
        .chesapeake-hero {
            padding: 100px 0 60px;
        }
        
        .chesapeake-title {
            font-size: 2.5rem;
        }
        
        .section-header h2 {
            font-size: 2.2rem;
        }
        
        .feature-grid-3,
        .feature-grid-4,
        .industries-grid-chesapeake {
            grid-template-columns: 1fr;
        }
        
        .stats-grid-chesapeake {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .speed-indicators-chesapeake {
            flex-direction: column;
            gap: 15px;
        }
        
        .speed-item-chesapeake {
            justify-content: center;
        }
        
        .cta-title-chesapeake {
            font-size: 2.2rem;
        }
        
        .btn-secondary-chesapeake {
            margin-left: 0;
            margin-top: 15px;
        }
        
        .cta-content-chesapeake .btn-primary-chesapeake,
        .cta-content-chesapeake .btn-secondary-chesapeake {
            width: 100%;
            justify-content: center;
        }
        
        .image-card img {
            height: 220px;
        }
        
        .image-card-content {
            padding: 25px;
        }
        
        .image-card-content h3 {
            font-size: 1.4rem;
        }
    }

    @media screen and (max-width: 576px) {
        .chesapeake-title {
            font-size: 2rem;
        }
        
        .chesapeake-badge {
            padding: 8px 18px;
        }
        
        .section-header h2 {
            font-size: 1.8rem;
        }
        
        .service-card-chesapeake {
            padding: 25px;
        }
        
        .testimonial-card {
            padding: 25px;
        }
        
        .faq-question-chesapeake {
            padding: 20px;
            font-size: 1rem;
        }
        
        .faq-answer-chesapeake.show {
            padding: 0 20px 20px 20px;
        }
        
        .stat-number-chesapeake {
            font-size: 2.8rem;
        }
    }

    /* Animations */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .delay-100 { transition-delay: 0.1s; }
    .delay-200 { transition-delay: 0.2s; }
    .delay-300 { transition-delay: 0.3s; }
    .delay-400 { transition-delay: 0.4s; }
    .delay-500 { transition-delay: 0.5s; }

    /* Touch Device Optimizations */
    @media (hover: none) and (pointer: coarse) {
        .service-card-chesapeake:hover,
        .industry-item-chesapeake:hover,
        .image-card:hover {
            transform: none;
        }
        
        .service-card-chesapeake:active {
            transform: scale(0.98);
        }
    }
