.main-title-dark {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.dark-wrapper {
    background-color: #0b111b;
    border-radius: 20px;
    padding: 40px 100px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
}

.cards-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.feature-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 25px;
}

.feature-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    text-align: left;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 1024px){
    .main-title-dark {
        font-size: 21px;
        margin-bottom: 20px;
    }

    .dark-wrapper {
        padding: 40px 10px;
    }

    .cards-grid {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 40px;
    }

    .feature-img {
        margin-bottom: 15px;
    }

    .feature-title {
        margin-bottom: 10px;
    }

    .feature-text {
        font-size: 15px;
        text-align: center;
    }
}