.np-dtf {
    padding: 120px 0;
    background: #f5f5f5;
}

/* GŁÓWNA KARTA */
.np-dtf-card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}

/* GRID GÓRY */
.np-dtf-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

/* LEWA STRONA */
.np-dtf-content {
    padding: 70px;
}

.np-dtf-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 6px;
}

.np-dtf-content h4 {
    font-size: 14px;
    letter-spacing: 2px;
    color: #444;
    margin-bottom: 30px;
}

.np-dtf-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #333;
}

.np-dtf-content h3 {
    margin: 40px 0 24px;
    font-size: 22px;
    font-weight: 700;
}

/* BENEFITY */
.np-dtf-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.np-dtf-benefits li {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.np-dtf-benefits img {
    width: 22px;
    margin-top: 4px;
    flex-shrink: 0;
}

.np-dtf-benefits strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.np-dtf-benefits p {
    margin: 0;
    font-size: 13px;
    color: #444;
}

/* LOGO */
.np-dtf-logo {
    margin-top: 50px;
}

.np-dtf-logo img {
    max-width: 200px;
}

/* PRAWA STRONA */
.np-dtf-media {
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
}

/* DUŻY OBRAZ */
.np-dtf-main {
    width: 100%;
    border-radius: 26px;
    object-fit: contain;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* GALERIA */
.np-dtf-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.np-dtf-gallery img {
    width: 100%;
    border-radius: 22px;
    object-fit: contain;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.np-dtf-gallery img:hover {
    transform: scale(1.05);
}

/* STOPKA W KARCIE */
.np-dtf-footer {
    padding: 40px 60px;
    text-align: center;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 1),
            rgba(245, 245, 245, 1),
            rgba(255, 255, 255, 1));
}

.np-dtf-footer h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.np-dtf-footer p {
    font-size: 14px;
    color: #444;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 992px) {
    .np-dtf-main-grid {
        grid-template-columns: 1fr;
    }

    .np-dtf-media {
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .np-dtf-content {
        padding: 40px 24px;
    }

    .np-dtf-gallery {
        grid-template-columns: 1fr;
    }
}