* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
}

.container {
    background-color: #ffffff;
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    overflow: hidden;
}

/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    gap: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.converse-logo {
    height: 48px;
    width: auto;
}

.mastercard-img {
    height: 42px;
    width: auto;
}

.divider {
    width: 1px;
    height: 32px;
    background-color: #e0e0e0;
}

.mastercard-logo {
    display: flex;
    align-items: center;
}

/* Main Content */
.main-content {
    padding: 0 24px 12px;
    text-align: center;
}

.title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 4px;
}

.description {
    font-size: 14px;
    color: #666;
    line-height: 1.3;
    margin-bottom: 12px;
}

/* Cards Image */
.cards-image {
    margin-bottom: 12px;
}

.cards-img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.link-icon {
    position: absolute;
    left: 20px;
    font-size: 14px;
}

.btn-primary {
    background-color: #292929;
    color: white;
    box-shadow: 0 4px 15px rgba(41, 41, 41, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 41, 41, 0.4);
}

.btn-secondary {
    background-color: #fff;
    color: #292929;
    border: 2px solid #292929;
}

.btn-secondary:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
}

.arrow {
    font-size: 12px;
}

.link-icon {
    font-size: 14px;
}

/* Footer */
.footer {
    background-color: #fff;
    color: #292929;
    padding: 12px 24px;
    text-align: center;
}

.footer-content {
    width: 100%;
}

.footer-text {
    font-size: 12px;
    margin-bottom: 4px;
    color: #292929;
}

.footer-contact {
    font-size: 13px;
    font-weight: 500;
    color: #292929;
}

.footer-contact a {
    color: #292929;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}


@media (max-width: 520px) {
    body {
        padding: 0;
        align-items: flex-start;
    }

    .container {
        border-radius: 0;
        min-height: 100vh;
    }

    .header {
        padding: 20px 20px;
    }

    .main-content {
        padding: 0 20px 24px;
    }

    .title {
        font-size: 22px;
    }

    .description {
        font-size: 13px;
    }

    .btn {
        padding: 14px 20px;
        font-size: 14px;
    }

    .footer {
        padding: 16px 20px;
    }

    .converse-logo {
        height: 45px;
    }

    .mastercard-img {
        height: 38px;
    }
}