﻿.banner-container {
    align-items: flex-start;
    padding: 30px;
}

.section-divider {
    width: 90%;
    height: 0.5px;
    background-color: #222222;
    margin: 10px auto; 
}

.invite-header {
    font-size: 22px;
    line-height: 26px;
}

.supported-products {
    margin-top: 20px;
    margin-bottom:10px;
}

    .supported-products strong {
        display: block;
        margin-bottom: 10px;
    }

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
    height: 100%;
    gap: 20px;
}

.product-item {
    text-align: center;
}

.product-icon {
    width: 100%;
    max-width: 60px;
    height: auto;
    margin-bottom: 5px;
}

.product-name {
    margin: 0;
    font-size:12px;
}

@media (max-width: 1024px) and (min-width: 768px) {
    .product-icon {
        max-width: 50px;
    }
}

@media (max-width: 480px) {
    .section-divider {
        margin: 5px auto;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-icon {
        max-width: 100px;
    }
}


