/* Trade Banner Section */
.top-banner {
    position: relative;
    width: 100%;
    height: 390px;
    overflow: hidden;
    margin-top: 60px;
}

/* Background image */
.banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.banner-bg-mobile {
    display: block;
}

.banner-bg-desktop {
    display: none;
}

/* Content area */
.banner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    max-width: 1280px;
    margin: 0 auto;
    color: white;
}

/* Main title */
.banner-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: white;
    white-space: nowrap;
    width: 100%;
    margin-top: 96px;
    text-align: left;
    padding: 5px 27px;
}

.banner-title-sub {
    width: 100%;
    font-size: 24px; 
    font-weight: 500;
    line-height: 1.25;
    color: white;
    white-space: pre-line;
    text-align: left;
    padding: 0 27px;
}

/* Description text */
.banner-description {
    color: white;
    width: 100%;
    font-size: 12px;
    text-align: left;
    padding: 0 27px;
    white-space: pre-line;
}

/* Action buttons */
.banner-actions {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    gap: 0;
    margin-top: auto;
    font-size: 14px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    height: 48px;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 50%;
    border-radius: 0;
    box-sizing: border-box;
}

.btn-primary {
    background-color: #3660FD;
    color: white;
}

.btn-secondary {
    background-color: #303030;
    color: white;
}

/* Desktop styles */
@media (min-width: 768px) {
    .top-banner {
        height: 48.4vw;
        margin-top: 64px;
    }

    .banner-bg-mobile {
        display: none;
    }

    .banner-bg-desktop {
        display: block;
    }

    .banner-content {
        align-items: flex-start;
        text-align: left;
        max-width: 1200px;
    }

    .banner-title {
        font-size: 68px;
        line-height: 1.1;
        width: auto;
        margin-top: 0;
        margin-bottom: 20px;
        padding: 0;
    }

    .banner-title-sub {
        font-size: 40px;
        line-height: 1.1;
        width: auto;
        margin-top: 0;
        white-space:nowrap;
        padding: 0;
    }

    .banner-description {
        width: auto;
        font-size: 16px;
        padding: 0;
        line-height: 30px;
    }

    .banner-actions {
        width: auto;
        justify-content: flex-start;
        gap: 64px;
        margin-top: 24px;
        font-size: 16px;
        margin-bottom: 80px;
    }

    .btn {
        min-width: 250px;
        width: fit-content;
        min-height: 70px;
        padding: 0 18px;
        border-radius: 6px;
        white-space: nowrap;
        font-size: 20px;
    }

    .btn-primary {
        background-color: #3660FD;
        color: white;
    }

    .btn-primary:hover {
        background-color: #5277FF;
    }

    .btn-secondary {
        background-color: #303030;
        color: white;
        border: 1px solid transparent;
    }

    .btn-secondary:hover {
        border: 1px solid white;
    }
}
