/* V2 Introduction Component Styles */

.v2-introduction-section {
    width: 100%;
    margin-bottom: 48px;
    padding: 32px 60px 48px 40px;
    background-color: #ffffff;
    border: 3px solid #040D81;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.v2-introduction-headline {
    font-size: clamp(0.64rem, 1.2vw, 0.8rem);
    font-weight: 600;
    color: #040D81;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.v2-introduction-content {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.v2-introduction-title-container {
    flex: 0 0 33.333%;
    width: 33.333%;
}

.v2-introduction-title {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: #040D81;
    margin-bottom: 0;
    line-height: 1.3;
    text-align: left;
}

.v2-introduction-text-container {
    flex: 0 0 66.667%;
    width: 66.667%;
}

.v2-introduction-text {
    font-size: clamp(0.8rem, 1.76vw, 1.0rem);
    line-height: 1.6;
    color: #040D81;
    margin-bottom: 0;
}

.v2-introduction-text p {
    margin-bottom: 16px;
}

.v2-introduction-text p:last-child {
    margin-bottom: 0;
}

.v2-introduction-text a {
    color: #22C55E;
    text-decoration: none;
    position: relative;
    font-weight: 500;
}

.v2-introduction-text a::after {
    content: '';
    position: absolute;
    bottom: 1px;
    left: 0;
    width: 0;
    height: 2px;
    background: #22C55E;
    transition: width 0.25s ease;
}

.v2-introduction-text a:hover::after {
    width: 100%;
}

/* Responsive styles - stack vertically on narrow screens */
@media (max-width: 768px) {
    .v2-introduction-section {
        padding: 24px 36px 36px 24px;
        margin-bottom: 40px;
        gap: 12px;
    }

    .v2-introduction-content {
        flex-direction: column;
        gap: 20px;
    }

    .v2-introduction-title-container {
        flex: none;
        width: 100%;
    }

    .v2-introduction-title {
        margin-bottom: 16px;
    }

    .v2-introduction-text-container {
        flex: none;
        width: 100%;
    }
}
