.intro-header {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    color: #f8f8f8;
    background: url(../img/benner3.png) no-repeat center center;
    background-size:contain;
    min-height: 450px;
}

.intro-message {
    position: relative;
    z-index: 2;
}

.intro-divider {
    margin: 20px auto;
    border-top: 2px solid #fff;
    width: 60%;
}

.intro-social-buttons {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.intro-social-buttons li {
    display: inline-block;
}

.intro-social-buttons a {
    min-width: 220px;
    font-size: 18px;
    padding: 10px 20px;
}

/* Responsive */
@media (max-width: 767px) {
    .intro-social-buttons {
        flex-direction: column;
    }

    .intro-social-buttons a {
        width: 90%;
    }
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}



.payment-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}
.payment-card {
    flex: 1;
    min-width: 280px;
    border: 2px solid #f1c40f;
    border-radius: 12px;
    padding: 20px;
    background-color: #fffbea;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.payment-card:hover {
    transform: translateY(-5px);
}
.payment-card h4 {
    margin-top: 0;
    color: #d35400;
}
.payment-card p {
    margin: 5px 0;
}
.copy-btn {
    background-color: #f1c40f;
    color: #000;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}
.copy-btn:hover {
    background-color: #d4ac0d;
}
