* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.container-custom {
    max-width: 1200px;
    width: 100%;
    margin-top: 80px;
}

.title-section {
    text-align: center;
    margin-bottom: 50px;
}

.title-section h1 {
    color: #2B2B2B;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cards-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
}

.package-link {
    text-decoration: none;
    display: block;
    width: 100%;
    max-width: 320px;
}

.package-card {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    border: 2px solid;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.package-card.agama {
    border-color: #00C853;
}

.package-card.agama:hover {
    border-color: #00A844;
}

.package-card.silver {
    border-color: #9E9E9E;
}

.package-card.silver:hover {
    border-color: #757575;
}

.package-card.gold {
    border-color: #C9A35D;
}

.package-card.gold:hover {
    border-color: #B8945A;
}

.package-badge {
    display: inline-block;
    padding: 30px 50px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: white;
}

.package-card.agama .package-badge {
    background: #00C853;
}

.package-card.silver .package-badge {
    background: #9E9E9E;
}

.package-card.gold .package-badge {
    background: #C9A35D;
}

.package-title {
    color: #2B2B2B;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
}

.back-link {
    text-align: center;
    margin-top: 30px;
}

.back-link a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-link a:hover {
    color: #C9A35D;
}

@media (max-width: 768px) {
    .title-section h1 {
        font-size: 28px;
    }

    .cards-container {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .package-card {
        padding: 30px 20px;
    }
}