.agb-logo-row {
    max-width: 980px;
    margin: 0 auto 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.agb-logo-card {
    width: 100%;
    padding: 22px 28px;
    border-radius: 22px;
    background: #fff;
    border: 2px solid rgba(176, 0, 32, 0.1);
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
}

.agb-logo-card-wko,
.agb-logo-card-industry {
    min-height: 150px;
}

.agb-logo-card img {
    max-width: 220px;
    max-height: 76px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.agb-logo-card span {
    color: #333;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.agb-download-card {
    max-width: 980px;
    margin: 0 auto 34px;
    padding: 30px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(176, 0, 32, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
    border: 2px solid rgba(176, 0, 32, 0.12);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.agb-download-card h2 {
    color: #333;
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.agb-download-card p:not(.privacy-kicker) {
    color: #555;
    margin-bottom: 0;
    line-height: 1.65;
}

.agb-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    background: #b00020;
    color: #fff;
    text-decoration: none;
    font-weight: 800;
    white-space: nowrap;
    box-shadow: 0 12px 30px rgba(176, 0, 32, 0.22);
    transition: all 0.25s ease;
}

.agb-download-btn:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(176, 0, 32, 0.3);
}

@media (max-width: 768px) {
    .agb-logo-row {
        grid-template-columns: 1fr;
    }

    .agb-download-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
    }

    .agb-download-btn {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .agb-logo-card {
        width: 100%;
    }
}
