.section-title h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.features-2 .features-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    position: relative;
}

.features-2 .features-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.features-2 .feature-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.75rem;
    border-radius: 16px;
    background-color: var(--surface-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.features-2 .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.features-2 .feature-card .icon-wrapper {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color:
        color-mix(in srgb, var(--color-pw-1), transparent 90%);
    transition: all 0.3s ease;
}

.features-2 .feature-card:hover .icon-wrapper {
    background-color: var(--color-pw-1);
}

.features-2 .feature-card .icon-wrapper i {
    font-size: 28px;
    color: var(--color-pw-1);
    transition: all 0.3s ease;
}

.features-2 .feature-card:hover .icon-wrapper i {
    color: var(--contrast-color);
}

.features-2 .feature-card .content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
    color: var(--color-pw-1);
}

.features-2 .feature-card .content p {
    font-size: 15px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 0;
    line-height: 1.6;
}

.features-2 .center-image {
    position: relative;
    align-self: center;
}

.features-2 .center-image .device-wrapper {
    position: relative;
    padding: 20px;
    z-index: 2;
}

.features-2 .center-image .device-wrapper img {
    max-height: 550px;
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.features-2 .center-image .device-wrapper .shape-decoration {
    position: absolute;
    width: 150%;
    height: 70%;
    top: 15%;
    left: -25%;
    background: linear-gradient(140deg,
            color-mix(in srgb, var(--accent-color), transparent 80%) 0%,
            color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
}