/* Benefits Section Styles */
.benefits-section {
    width: 100%;
    padding: 2rem 1rem;
    background: #000;
}

@media (min-width: 640px) {
    .benefits-section {
        padding: 2rem 1.5rem;
    }
}

@media (min-width: 768px) {
    .benefits-section {
        padding: 2rem 2rem;
    }
}

@media (min-width: 1024px) {
    .benefits-section {
        padding: 2rem 4rem;
    }
}

@media (min-width: 1280px) {
    .benefits-section {
        padding: 2rem 6rem;
    }
}

.benefits-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background: linear-gradient(to bottom left, #013B34 0%, #00100F 100%);
}

@media (min-width: 640px) {
    .benefits-container {
        padding: 2rem;
    }
}

@media (min-width: 768px) {
    .benefits-container {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .benefits-container {
        padding: 3rem;
    }
}

.benefits-content {
    width: 100%;
}

.benefits-title {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-align: center;
    opacity: 0.9;
}

@media (min-width: 640px) {
    .benefits-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 768px) {
    .benefits-title {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .benefits-title {
        font-size: 2.5rem;
    }
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: white;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (min-width: 640px) {
    .benefit-title {
        font-size: 1.25rem;
    }
}

@media (min-width: 768px) {
    .benefit-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .benefit-title {
        font-size: 1.875rem;
    }
}

.benefit-description {
    font-size: 0.875rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    text-transform: none;
    font-weight: normal;
    margin: 0;
}

@media (min-width: 640px) {
    .benefit-description {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {
    .benefit-description {
        font-size: 1.125rem;
    }
}

@media (min-width: 1024px) {
    .benefit-description {
        font-size: 1.25rem;
    }
}

/* VIP Benefits Section */
.vip-benefits {
    width: 100%;
    padding-top: 32px;
    padding-bottom: 32px;
    padding-left: 16px;
    padding-right: 16px;
}

.vip-benefits-container {
    width: 100%;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    background: linear-gradient(to bottom left, #013B34 0%, #00100F 100%);
}

.vip-benefits .benefit-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: white;
}

.vip-benefits .benefit-title {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Barlow', sans-serif;
}

.vip-benefits .benefit-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    text-transform: none;
    font-family: 'Barlow', sans-serif;
}