html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,*:after,*:before {
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    min-height: 100vh;
}

/* Header Styles */
.header {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    width: 100%;
    position: relative;
    z-index: 1000;
}

.header__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    height: 70px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.header__logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 30px;

    @media(max-width: 990px) {
        gap: 10px
    }
}

.header__nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;

    @media(max-width: 990px) {
        font-size: 14px;
    }
}

.header__nav-link:hover {
    color: white;
}

.header__nav-link--active {
    color: #4a90e2;
}

.header__nav-link--badge::after {
    content: "8";
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn--outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn--primary {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
}

.btn--primary:hover {
    background: linear-gradient(135deg, #c2185b, #880e4f);
    transform: translateY(-2px);
}

.header__mobile-menu {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.header__mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
}

.header__mobile-nav.active {
    display: block;
}

.header__mobile-nav-list {
    list-style: none;
    padding: 20px;
}

.header__mobile-nav-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__mobile-nav-item:last-child {
    border-bottom: none;
}

.header__mobile-nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    display: block;
    position: relative;
}

.header__mobile-nav-link--badge::after {
    content: "8";
    position: absolute;
    top: -2px;
    right: -20px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__mobile-actions {
    padding: 0 20px 20px;
    display: flex;
    gap: 10px;
}

.header__mobile-actions .btn {
    flex: 1;
    text-align: center;
}

/* Banner Styles */
.banner {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: url("../images/banner.webp") no-repeat 0 0;
    background-size: cover;
    background-position: center center;
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.banner__text {
    flex: 1;
    max-width: 600px;
}

.banner__welcome {
    font-size: 18px;
    color: #4a90e2;
    margin-bottom: 15px;
    font-weight: 500;
}

.banner__title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.banner__title--highlight {
    color: #4a90e2;
}

.banner__cta {
    margin-bottom: 40px;
}

.btn--cta {
    background: linear-gradient(135deg, #e91e63, #ad1457);
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.btn--cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}

.banner__payments {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.7;
}

.payment-icon {
    height: 24px;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
    filter: grayscale(0);
}

.banner__logo {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.banner__logo:hover {
    transform: rotate(0deg) scale(1.05);
}

.banner__logo-icon {
    font-size: 80px;
    color: white;
}

.banner__stats {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card__number {
    font-size: 28px;
    font-weight: 900;
    color: #4a90e2;
    margin-bottom: 5px;
}

.stat-card__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .header__nav,
    .header__actions {
        display: none;
    }

    .header__mobile-menu {
        display: block;
    }

    .header__content {
        padding: 0 15px;
        height: 60px;
    }

    .banner {
        padding: 40px 0;
    }

    .banner__content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .banner__logo {
        width: 120px;
        height: 120px;
        order: -1;
    }

    .banner__logo-icon {
        font-size: 50px;
    }

    .banner__title {
        font-size: 36px;
        line-height: 1.2;
    }

    .banner__welcome {
        font-size: 16px;
    }

    .btn--cta {
        width: 100%;
        font-size: 16px;
        padding: 12px 30px;
    }

    .banner__payments {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .payment-icon {
        height: 20px;
    }

    .banner__stats {
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-card__number {
        font-size: 24px;
    }

    .stat-card__label {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .banner__title {
        font-size: 28px;
    }

    .container {
        padding: 0 15px;
    }
}

.games-section {
    margin-bottom: 60px;
}

.games-section__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.games-section__title {
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.games-section__see-all {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.games-section__see-all:hover {
    color: #4a90e2;
}

.games-section__see-all::after {
    content: "›";
    font-size: 20px;
    transition: transform 0.3s ease;
}

.games-section__see-all:hover::after {
    transform: translateX(3px);
}

.games-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
}

.games-grid::-webkit-scrollbar {
    height: 8px;
}

.games-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.games-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.games-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.game-card {
    flex: 0 0 280px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.game-card__image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-card:hover .game-card__image {
    transform: scale(1.05);
}

.game-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 20px;
}

.game-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.game-card__subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-card__provider {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .games-section__title {
        font-size: 24px;
    }

    .games-section__see-all {
        font-size: 14px;
    }

    .game-card {
        flex: 0 0 220px;
    }

    .game-card__image {
        height: 260px;
    }

    .game-card__title {
        font-size: 16px;
    }

    .game-card__subtitle {
        font-size: 12px;
    }

    .games-grid {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .game-card {
        flex: 0 0 180px;
    }

    .game-card__image {
        height: 210px;
    }

    .game-card__content {
        padding: 15px;
    }

    .game-card__title {
        font-size: 14px;
    }

    .game-card__subtitle {
        font-size: 11px;
    }
}

.footer {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 50px 0 30px;
    margin-top: auto;
}

.footer__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer__content {
    display: grid;
    grid-template-columns: auto 1fr 1fr 1fr 1fr auto;
    gap: 60px;
    align-items: start;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.footer__logo-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #4a90e2, #357abd);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__column-title {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer__link-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    line-height: 1.5;
}

.footer__link:hover {
    color: #4a90e2;
}

.footer__flag {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #e91e63, #ad1457);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer__flag:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.footer__bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer__container {
        padding: 0 15px;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: left;
    }

    .footer__logo {
        justify-content: center;
        margin-bottom: 10px;
    }

    .footer__column {
        align-items: flex-start;
    }

    .footer__column-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .footer__link {
        font-size: 14px;
    }

    .footer__flag {
        align-self: center;
        margin-top: 10px;
    }

    .footer__bottom {
        margin-top: 30px;
        padding-top: 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }

    .footer__content {
        gap: 25px;
    }

    .footer__column-title {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .footer__link {
        font-size: 13px;
    }

    .footer__link-list {
        gap: 10px;
    }
}

.bonus-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    align-items: stretch;
}

.bonus-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 35px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(233, 30, 99, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.bonus-card:hover::before {
    opacity: 1;
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.bonus-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bonus-image {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2a2a3e, #1e1e32);
}

.bonus-label {
    font-size: 14px;
    color: #4a90e2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.bonus-title {
    font-size: 24px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    line-height: 1.2;
}

.bonus-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
    flex-grow: 1;
}

.bonus-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.bonus-btn {
    background: linear-gradient(135deg, #4a90e2, #357abd);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    flex: 1;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.bonus-btn:hover {
    background: linear-gradient(135deg, #357abd, #2968a3);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.bonus-info {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.bonus-info:hover {
    background: rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.4);
    color: #4a90e2;
    transform: scale(1.1);
}

/* Special styling for different bonus types */
.bonus-card:nth-child(1) .bonus-label {
    color: #e74c3c;
}

.bonus-card:nth-child(2) .bonus-label {
    color: #f39c12;
}

.bonus-card:nth-child(3) .bonus-label {
    color: #27ae60;
}

.bonus-card:nth-child(4) .bonus-label {
    color: #9b59b6;
}

.bonus-card:nth-child(5) .bonus-label {
    color: #e91e63;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .bonus-container {
        padding: 0 15px;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .bonus-card {
        padding: 25px 20px;
        min-height: 280px;
    }

    .bonus-image {
        height: 100px;
        margin-bottom: 15px;
    }

    .bonus-title {
        font-size: 20px;
    }

    .bonus-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .bonus-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .bonus-info {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .bonus-card {
        padding: 20px 15px;
        min-height: 260px;
    }

    .bonus-image {
        height: 80px;
    }

    .bonus-title {
        font-size: 18px;
    }

    .bonus-subtitle {
        font-size: 15px;
    }

    .bonus-label {
        font-size: 12px;
    }

    .bonus-actions {
        gap: 10px;
    }
}

/* Larger screens - 5 cards in a row */
@media (min-width: 1200px) {
    .bonus-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 65px 20px;
}

/* Content Sections */
.content-area {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(25px);
    border-radius: 35px;
    padding: 55px;
    margin-bottom: 55px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.content-area::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, rgba(108, 99, 255, 0.3), rgba(255, 107, 107, 0.3), rgba(78, 205, 196, 0.3), rgba(255, 195, 113, 0.3));
    border-radius: 35px;
    z-index: -1;
    opacity: 0.6;
}

/* Typography */
.hero-title {
    font-size: 36px;
    font-weight: 900;
    color: #7dd3fc;
    margin-bottom: 30px;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.3;
}

.sub-title {
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin: 45px 0 22px;
    position: relative;
    display: inline-block;
}

.sub-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #7dd3fc, #3b82f6);
    border-radius: 2px;
}

.body-text {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.93);
    margin-bottom: 26px;
    text-align: justify;
}

.body-text strong {
    color: #7dd3fc;
    font-weight: 800;
}

/* List Styles */
.item-list {
    list-style: none;
    margin: 30px 0;
    padding-left: 0;
}

.list-entry {
    position: relative;
    padding: 14px 0 14px 40px;
    color: rgba(255, 255, 255, 0.93);
    font-size: 19px;
}

.list-entry::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #7dd3fc;
    font-weight: bold;
    font-size: 18px;
}

.procedure-list {
    list-style: none;
    counter-reset: procedure-counter;
    margin: 30px 0;
}

.procedure-step {
    position: relative;
    padding: 14px 0 14px 50px;
    color: rgba(255, 255, 255, 0.93);
    font-size: 19px;
    counter-increment: procedure-counter;
    margin-bottom: 8px;
}

.procedure-step::before {
    content: counter(procedure-counter);
    position: absolute;
    left: 0;
    top: 14px;
    background: linear-gradient(135deg, #7dd3fc, #3b82f6);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    box-shadow: 0 6px 15px rgba(125, 211, 252, 0.4);
}

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 35px 0;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
}

.table-header {
    background: linear-gradient(135deg, rgba(125, 211, 252, 0.5), rgba(59, 130, 246, 0.5));
    color: white;
    font-weight: 800;
}

.table-cell {
    padding: 22px 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.93);
    font-size: 18px;
}

.table-cell strong {
    color: #7dd3fc;
}

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

.table-row:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* FAQ Styles */
.faq-area {
    margin-top: 45px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    overflow: hidden;
    transition: all 0.6s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.faq-question {
    font-size: 21px;
    font-weight: 800;
    color: white;
    margin: 0;
    padding: 28px;
    cursor: pointer;
    position: relative;
    background: rgba(125, 211, 252, 0.18);
    transition: background 0.4s ease;
}

.faq-question::after {
    content: "◉";
    position: absolute;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #7dd3fc;
    transition: transform 0.6s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-answer {
    padding: 0 28px;
    color: rgba(255, 255, 255, 0.93);
    font-size: 19px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease, padding 0.6s ease;
}

.faq-answer.active {
    max-height: 350px;
    padding: 0 28px 28px;
}

.faq-item:hover {
    border-color: rgba(125, 211, 252, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.faq-question:hover {
    background: rgba(125, 211, 252, 0.25);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 45px 15px;
    }

    .content-area {
        padding: 40px 28px;
        margin-bottom: 45px;
        border-radius: 30px;
    }

    .hero-title {
        font-size: 30px;
        margin-bottom: 25px;
    }

    .sub-title {
        font-size: 23px;
        margin: 35px 0 18px;
    }

    .body-text {
        font-size: 18px;
    }

    .list-entry,
    .procedure-step {
        font-size: 18px;
    }

    .table-cell {
        padding: 18px 22px;
        font-size: 17px;
    }

    .faq-question {
        font-size: 19px;
        padding: 22px;
    }

    .faq-answer {
        padding: 0 22px;
        font-size: 18px;
    }

    .faq-answer.active {
        padding: 0 22px 22px;
    }

    .faq-question::after {
        right: 22px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 35px 12px;
    }

    .content-area {
        padding: 35px 22px;
    }

    .hero-title {
        font-size: 28px;
    }

    .sub-title {
        font-size: 21px;
    }

    .body-text,
    .list-entry,
    .procedure-step {
        font-size: 17px;
    }

    .table-cell {
        padding: 16px 18px;
        font-size: 16px;
    }

    .info-table {
        min-width: 550px;
    }
}