.hero-sec-cover {
    background-image: linear-gradient(rgba(45, 17, 85, 0.6), rgba(25, 10, 48, 0.7)), url(../images/banner/cover-background-1.jpg);
    background-size: cover;
    background-position: center center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 40px;
}

.cover-content {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.cover-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0;
}

.cover-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    background-color: rgba(138, 43, 226, 0.7);
    padding: 10px 20px;
    border-radius: 10px;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 25px;
}

.flags-container {
    margin: 20px 0;
    font-size: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cover-info {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
}

.img-fluid {
    border-radius: 25px;
    margin: 15px 0;
}

.cover-info p {
    margin-bottom: 5px;
}

.pricing-table-container {
    max-width: 800px;
    margin: 40px auto;
    border: 2px solid #9b59b6;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.price-row {
    display: flex;
    align-items: center;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.price-row:last-child {
    border-bottom: none;
}

.price-description {
    flex-grow: 1;
    padding: 20px 25px;
}

.price-description h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
}

.price-description p {
    margin: 5px 0 0;
    font-size: 0.95rem;
    color: #555;
}

.price-amount {
    padding: 20px 30px;
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    background-color: #e9ecef;
}

.price-row.temprano .price-description {
    background-color: #fdc904;
}

.price-row.normal .price-description {
    background-color: #d5dbdb;
}

.price-row.virtual .price-description {
    background-color: #fdc904;
}

.price-row.workshop .price-description {
    background-color: #fdc904;
}
.price-row.workshop .price-amount {
    background-color: #d5dbdb;
}

.font-weight-bold {
    font-weight: bold;
}

.bank-accounts-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.bank-section-title {
    text-align: center;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.bank-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    height: 100%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(155, 89, 182, 0.2);
}

.bank-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    color: #9b59b6;
    margin-bottom: 15px;
}

.bank-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

.bank-card p strong {
    color: #333;
}

@media (max-width: 991px) {
    .custom-btn2 {
        line-height: 34px;
    }
    .cover-title {
        font-size: 3rem;
    }

    .cover-subtitle {
        font-size: 1.5rem;
    }

    .flags-container {
        font-size: 2rem;
    }

    .cover-info {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .custom-btn2 {
        line-height: 34px;
    }
    .hero-sec-cover {
        min-height: 90vh;
    }

    .cover-title {
        font-size: 2.2rem;
    }

    .cover-subtitle {
        font-size: 1.1rem;
        padding: 8px 15px;
    }

    .flags-container {
        font-size: 1.8rem;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cover-info {
        font-size: 1.1rem;
    }

    .price-row {
        flex-direction: column;
        text-align: center;
    }

    .price-description {
        width: 100%;
        padding: 20px;
    }

    .price-amount {
        width: 100%;
        padding: 15px;
        font-size: 2rem;
    }
}