/* Vision Statement Section */
.vision-section {
    background: linear-gradient(135deg, #ec1e2c 0%, #bfbcbc 100%);
    color: white;
    padding: 40px !important;
}

.vision-section .section-title {
    color: white;
    margin-bottom: 3rem;
}

.vision-section .section-title::after {
    background: white;
}

.vision-statement-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.vision-quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.vision-quote-right {
    align-self: flex-end;
}

.vision-content {
    text-align: center;
    flex: 1;
}

.vision-text {
    font-size: 1.6rem;
    line-height: 1.4;
    color: white;
    font-weight: 500;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.vision-label {
    position: relative;
}

.vision-label span {
    background: rgba(236, 30, 44, 0.9);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .vision-statement-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .vision-quote-icon {
        font-size: 2rem;
    }

    .vision-quote-right {
        align-self: center;
    }

    .vision-text {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .vision-label span {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
}
