.help {
    align-items: center;
    justify-content: center;
    display: flex;
}

.firstRow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
}

.dataPanel {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #8d6e63;
}

.dataHeader {
    color: white;
}

.dataPanel form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dataPanel input {
    background-color: transparent;
    color: #8d6e63;
    border: 2px solid white;
    border-radius: 5px;
}

.dataPanel input:focus {
    box-shadow: 0 0 8px rgba(255,255,255,0.7);
}

.cookie-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #8d6e63;
}

.cookieHeader {
    color: white;
}

/* ===== MOBILE RESPONSIVE ===== */

@media (max-width: 768px) {
    .help {
        flex-direction: column;
        padding: 15px;
    }

    .firstRow {
        flex-direction: column;
        gap: 25px;
        max-width: 100%;
    }

    .dataPanel,
    .cookie-container {
        gap: 10px;
        width: 100%;
    }

    .dataHeader,
    .cookieHeader {
        font-size: 16px;
    }

    .dataPanel input {
        width: 100%;
        max-width: 300px;
        padding: 8px;
    }
}

@media (max-width: 480px) {
    .help {
        flex-direction: column;
        padding: 10px;
    }

    .firstRow {
        flex-direction: column;
        gap: 15px;
        padding: 0;
    }

    .dataPanel,
    .cookie-container {
        width: 100%;
        gap: 8px;
    }

    .dataHeader,
    .cookieHeader {
        font-size: 14px;
    }

    .dataPanel input {
        width: 100%;
        font-size: 12px;
        padding: 6px;
    }

    .dataPanel form {
        gap: 6px;
    }
}