.active-etfs {
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    max-width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    background: #122b54;
    color: #ffffff;
    padding: 0;
    overflow: hidden;
	font-family: "Allianz Neo", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.active-etfs__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 80px;
    text-align: center;
}

.active-etfs__top-gif {
    display: block;
    width: 12px;
    height: 110px;
    object-fit: contain;
    margin: 0 auto 30px;
}

.active-etfs h2 {
    margin: 0 0 20px;
    color: #ff6b00;
    font-size: 42px;
    font-weight: 300;
    line-height: 1.2;
}

.active-etfs__intro {
    max-width: 900px;
    margin: 0 auto 60px;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}

.active-etfs__grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    text-align: left;
}

.active-etfs__item {
    flex: 1;
    max-width: 320px;
}

.active-etfs__icon {
    display: block;
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 20px;
}

.active-etfs__item h3 {
    margin: 0 0 20px;
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
}

.active-etfs__item p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
}

@media (max-width: 991px) {
    .active-etfs__inner {
        padding: 0 24px 60px;
    }

    .active-etfs__grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        text-align: center;
    }

    .active-etfs__item {
        max-width: 500px;
    }

    .active-etfs__icon {
        margin-left: auto;
        margin-right: auto;
    }

    .active-etfs h2 {
        font-size: 34px;
    }
}