.sph-1415-container {
    width: 100%;
}

.sph-1415-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.sph-1415-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;
}

.sph-1415-col-content {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 40px;
}

.sph-1415-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    font-weight: 500;
}

.sph-1415-eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    margin-right: 15px;
}

.sph-1415-heading {
    font-size: 40px;
    line-height: 1.2;
    margin: 0 0 30px 0;
}

.sph-1415-body {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sph-1415-support {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.sph-1415-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sph-1415-card {
    transition: transform 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.sph-1415-card:hover {
    transform: translateY(-3px);
}

.sph-1415-card-icon {
    font-size: 24px;
    margin-bottom: 15px;
    display: inline-flex;
}

.sph-1415-card-icon svg {
    width: 24px;
    height: 24px;
}

.sph-1415-card-title {
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.sph-1415-card-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .sph-1415-grid {
        grid-template-columns: 1fr;
    }
    
    .sph-1415-col-content {
        position: static;
        margin-bottom: 40px;
    }
    
    .sph-1415-heading {
        font-size: 32px;
    }
}