.sponsor-top-banner {
    background-color: #003399;
    width: 100%;
    padding: 60px 30px;
    text-align: center;
}
.sponsor-top-banner h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}
.sponsor-top-banner p {
    color: #e6edff;
    font-size: 15px;
}

.sponsor-package-section {
    padding: 70px 30px;
    background: #ffffff;
}
.sponsor-package-container {
    max-width: 1600px;
    margin: 0 auto;
}
.package-main-title {
    text-align: center;
    font-size: 26px;
    color: #002060;
    margin-bottom: 50px;
    font-weight: 600;
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.package-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 40px 30px;
    position: relative;
}
.card-visionary {
    border-top: 6px solid #7b2cb8;
}
.card-platinum {
    border-top: 6px solid #003399;
}
.card-gold {
    border-top: 6px solid #f7c320;
}

.card-title {
    font-size: 26px;
    color: #002060;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 600;
}
.card-price {
    font-size: 40px;
    color: #003399;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

.benefit-list {
    list-style: none;
    margin-bottom: 40px;
}
.benefit-list li {
    padding: 12px 0;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #e8ebf2;
}

.enquire-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: 0.25s ease;
}
.btn-visionary {
    background-color: #7b2cb8;
}
.btn-visionary:hover {
    background-color: #662299;
}
.btn-platinum {
    background-color: #003399;
}
.btn-platinum:hover {
    background-color: #002070;
}
.btn-gold {
    background-color: #003399;
}
.btn-gold:hover {
    background-color: #002070;
}

@media (max-width: 1200px) {
    .package-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .package-grid {
        grid-template-columns: 1fr;
    }
    .sponsor-top-banner h2 {
        font-size: 30px;
    }
    .card-price {
        font-size: 32px;
    }
}