/* VIP Section Specific Styles */
.vip-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    border-top: 4px solid #ffd700; /* Gold top border */
}

.vip-section .section-title {
    font-size: 3rem;
    color: #ffd700; /* Gold color for VIP title */
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.vip-section .section-subtitle {
    font-size: 1.6rem;
    color: #e0e0e0;
    margin-bottom: 50px;
    font-style: italic;
    line-height: 1.4;
}

.vip-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
}

.vip-step {
    background-color: #242424;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    max-width: 500px;
}

.vip-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.vip-step h3 {
    font-size: 2rem;
    color: #ffd700; /* Gold color for step titles */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-step h3 .step-number {
    background-color: #ffd700;
    color: #1a1a1a;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 1.5rem;
    margin-right: 10px;
}

.vip-step ul {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.vip-step ul li {
    font-size: 1.3rem;
    color: #e0e0e0;
    line-height: 1.8;
    margin-bottom: 15px;
}

.vip-step ul li a {
    color: #00aaff; /* Light blue color for links */
    text-decoration: none;
    font-weight: bold;
}

.vip-step ul li a:hover {
    text-decoration: underline;
}

.vip-note {
    font-size: 1.4rem;
    color: #b3b3b3;
    margin-top: 40px;
    font-style: italic;
    line-height: 1.6;
}
