h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
}

.card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f7f7f7;
    border-radius: 30px;
    padding: 40px 50px;
}

.card-content {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.logo-trade {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: conic-gradient(from 200deg at 50% 50%, #ff005c, #8e2de2, #ff005c);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-trade::before {
    content: '';
    width: 24px;
    height: 24px;
    background: white;
    transform: rotate(45deg);
    position: absolute;
}

.text {
    margin: 0 0 0 40px;
    max-width: 700px;
}

.text h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0 0 12px;
}

.text p {
    margin: 0;
    line-height: 1.6;
    color: #333;
}

.link {
    color: #9c1b24;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    transition: 0.2s;
}

.link svg {
    width: 20px;
    height: 20px;
    stroke: #9c1b24;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.2s;
}

.link:hover svg {
    transform: translateX(4px) translateY(-2px);
}

@media (max-width: 768px) {
    .card {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
    }
    .card-content {
        flex-direction: column;
        align-items: center;
        gap: 60px;
    }
    .logo-trade {
        width: 80px;
        height: 80px;
    }
    h1 {
        font-size: 32px;
    }
}