﻿* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 8%;
    gap: 40px;
    flex-wrap: wrap;
}

.reverse {
    flex-direction: row-reverse;
}

    .reverse .section-image {
        margin-left: 0;
    }

.section-image {
    flex: 1;
    max-width: 45%;
}

    .section-image img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        transition: transform 0.4s ease;
    }

        .section-image img:hover {
            transform: scale(1.05);
        }

.section-content {
    flex: 1;
    max-width: 50%;
}

    .section-content h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        color: #0d6efd;
        font-weight: 600;
    }

    .section-content p {
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: #333;
    }

    .section-content ul {
        list-style: none;
        padding-left: 0;
    }

        .section-content ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            font-size: 1rem;
            color: #444;
        }

            .section-content ul li::before {
                content: '✔';
                position: absolute;
                left: 0;
                color: #0a84ff;
                font-weight: bold;
            }

/* Section 2 - Cards */
.section2 {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 50px 20px;
    background-color: #f4f8fb;
}

.cards {
    width: 320px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .cards:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .cards img {
        width: 70px;
        height: 70px;
        border-radius: 12px;
        object-fit: contain;
    }

    .cards h3 {
        color: #0d6efd;
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .cards p {
        margin: 0;
        color: #333;
        font-size: 0.95rem;
        line-height: 1.4;
    }

/* Section 3 - Services */
.section3 {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

    .section3 h2 {
        font-size: 2rem;
        color: #0d6efd;
        margin-bottom: 10px;
    }

    .section3 p {
        font-size: 1rem;
        max-width: 600px;
        margin: 0 auto 40px;
        color: #333;
    }

.section3_cards {
    display: inline-block;
    width: 180px;
    padding: 20px;
    margin: 10px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

    .section3_cards:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .section3_cards img {
        width: 70px;
        height: 70px;
        border-radius: 100%;
        object-fit: cover;
        margin-bottom: 15px;
    }

    .section3_cards h3 {
        font-size: 1.1rem;
        color: #333;
        margin-top: 5px;
    }

/* Section 4 - Payment Logos */
.section4 {
    padding: 60px 20px;
    background-color: #f7fafd;
    text-align: center;
}

    .section4 h2 {
        font-size: 2rem;
        color: #004aad;
        margin-bottom: 10px;
    }

    .section4 p {
        font-size: 1rem;
        color: #555;
        margin-bottom: 40px;
    }

.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

    .payment-logos img {
        width: 100px;
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        background: white;
        padding: 10px;
        border-radius: 12px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }

        .payment-logos img:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }

/* Responsive */
@media (max-width: 768px) {
    .section,
    .reverse {
        flex-direction: column;
        text-align: center;
        padding: 30px 5%;
    }

    .section-image,
    .section-content {
        max-width: 100%;
    }

        .section-content ul li {
            text-align: left;
        }

    .section2 {
        gap: 10px;
        padding: 30px 10px;
    }

    .cards {
        width: 280px;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
    }

        .cards img {
            width: 50px;
        }
}
