.co-1565-section {
    width: 100%;
}

.co-1565-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.co-1565-eyebrow {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.co-1565-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
}

.co-1565-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.co-1565-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.co-1565-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.co-1565-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.co-1565-icon svg {
    width: 2rem;
    height: 2rem;
}

.co-1565-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.co-1565-card-desc {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.co-1565-cta-wrap {
    margin-top: auto;
}

.co-1565-card-cta {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity 0.2s ease;
}

.co-1565-card-cta:hover {
    opacity: 0.8;
}

.co-1565-arrow {
    margin-left: 8px;
    transition: transform 0.2s ease;
}

.co-1565-card-cta:hover .co-1565-arrow {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .co-1565-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .co-1565-grid {
        grid-template-columns: 1fr;
    }
    
    .co-1565-title {
        font-size: 2rem;
    }
}