
.section-wrapper {
        padding: 5px 0px 60px 0px;
        background: #000;
        text-align: center;
    }

    .section-title {
        color: #ffd700;
        font-size: 36px;
        font-weight: 900;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }

    .containercls {
        max-width: 1300px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
    }

    .box-wrapper {
        text-align: center;
    }

    .box {
        background: linear-gradient(135deg, #ffd700, #c9a100);
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
        color: black;
        min-height: 220px; /* Same height for all */
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .box h3 {
        font-size: 22px;
        font-weight: 900;
        margin-bottom: 15px;
        text-transform: uppercase;
        text-align: center;
    }

    .box p {
        font-size: 17px;
        margin: 5px 0;
        line-height: 1.4;
        font-weight: 600;
    }

    .price {
        margin-top: 10px;
        font-size: 18px;
        font-weight: 700;
    }

    .pay-btn {
        display: inline-block;
        background: linear-gradient(to right, #b8860b, #ffd700);
        color: black;
        padding: 14px 28px;
        border-radius: 10px;
        text-decoration: none;
        font-size: 17px;
        font-weight: bold;
        border: 2px solid #000;
        transition: 0.3s;
        margin-top: 12px;
    }

    .pay-btn:hover {
        opacity: 0.85;
        transform: scale(1.05);
    }
