/* Beyond NEXT Section Styles */
.beyond-next {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.beyond-next-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 2rem auto;
    text-align: center;
}

.next-pillars {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
}

.next-pillar {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.next-pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.next-pillar h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.beyond-next-features {
    max-width: 800px;
    margin: 2rem auto;
    padding-left: 2rem;
}

.beyond-next-features li {
    margin-bottom: 0.5rem;
    position: relative;
}

.beyond-next-features li::before {
    content: "→";
    position: absolute;
    left: -1.5rem;
    color: var(--primary-color);
}

.beyond-next-tagline {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    margin-top: 3rem;
    font-style: italic;
}

/* Responsive styles */
@media (max-width: 992px) {
    .next-pillars {
        flex-direction: column;
        align-items: center;
    }
    
    .next-pillar {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .beyond-next-description,
    .beyond-next-tagline {
        font-size: 1.1rem;
    }
}
