    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: linear-gradient(180deg, #3a0ca3, #7209b7);
        margin: 0;
        padding: 0;
        color: #333;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .container {
        background: #fff;
        max-width: 440px;
        width: 90%;
        margin: auto;
        text-align: center;
        border-radius: 16px;
        padding: 10px 10px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    h1 {
        color: #3a0ca3;
        font-size: 2.2em;
        margin-bottom: 12px;
    }

    .for-sale {
        font-size: 1.2em;
        color: #220654;
        margin-bottom: 35px;
            font-weight: bold;
    }

.transaction-info {
        background: #f5f3ff;
        padding: 14px 18px;
        border-radius: 8px;
        text-align: left;
        font-size: 0.95em;
        color: #444;
        margin: 0 auto 35px;
        line-height: 1.6em;
    }

    .transaction-info strong {
        color: #3a0ca3;
    }

.transaction-info ul {
    padding-left: 22px;
    margin: 0 0 16px 0;
}

.transaction-info li {
    margin-bottom: 10px;
    list-style-type: "✔️ ";
    color: #444;
    line-height: 1.5em;
}

.divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 15px auto 10px;
    width: 85%;
}

.payment-logos {
    text-align: center;
    margin-top: 10px;
}

.payment-logos img {
    height: 28px;
    margin: 5px 10px;
    vertical-align: middle;
    filter: grayscale(20%);
    transition: filter 0.3s ease, transform 0.2s;
}

.payment-logos img:hover {
    filter: none;
    transform: scale(1.05);
}


    .contact p {
        margin-bottom: 18px;
        color: #444;
        font-weight: 500;
    }

    .icons a {
        margin: 0 10px;
        text-decoration: none;
        display: inline-block;
    }

    .icons img {
        width: 40px;
        height: 40px;
        transition: transform 0.2s, opacity 0.2s;
    }

    .icons img:hover {
        transform: scale(1.1);
        opacity: 0.85;
    }

    footer {
        text-align: center;
        background: #1a1a1a;
        color: #ccc;
        padding: 18px 0;
        font-size: 14px;
        margin-top: auto;
    }

    footer a {
        color: #fff;
        text-decoration: none;
        font-weight: bold;
    }

    footer a:hover {
        text-decoration: underline;
    }