/* Limit container */
div[class$="__container"] {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    div[class$="__container"] {
        padding: 0;
    }
}

/* General */
body {
    font-family: 'Montserrat', sans-serif;
}

.button {
    padding: 10px 20px;
    background-color: #0073e6;
    color: #fff;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button::before {
    content: '';
    width: 0;
    height: 100%;
    background-color: #024c97;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: width 0.3s ease;
}

.button:hover::before {
    width: 100%;
}

/* Header */
header {
    padding: 15px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(10px);
}

.header__logo > a {
    /* max-width: 100px !important; */
    height: 65px !important;
    width: auto;
    display: inline-block;
}

.header__logo > a img {
    height: 100%;
    width: 100%;
}


.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__menu .menu li {
    display: inline-block;
}

.header__menu .menu li:not(:last-child) {
    margin-right: 25px;
}

.header__menu .menu li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
}

.header__menu .menu li a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.header__button {
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.header__button--white {
    background-color: #024c97 !important;
    color: #ffffff;
}

.header__button--white::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.header__button:hover {
    background: #fff;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    display: none;
}

@media (max-width: 1024px) {
    .mobile-menu {
        /* display: block; */
    }
}

.mobile-menu.active {
    right: 0;
    display: block;
}

.mobile-menu__content {
    padding: 80px 30px 30px;
}

.mobile-menu__nav .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__nav .menu li {
    margin-bottom: 20px;
}

.mobile-menu__nav .menu li a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    transition: color 0.2s ease;
}

.mobile-menu__nav .menu li a:hover {
    color: #0073e6;
}

.mobile-menu__button {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

/* Блокування скролу при відкритому меню */
body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .header__menu {
        display: none;
    }

    .header__button {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }
}

@media (max-width: 737px) {
    .mobile-menu {
        width: 100%;
    }
}
/* Page content section */
.page-content {
    padding: 25px 0;
}

.page-content p {
    font-size: 17px;
    line-height: 1.5;
    margin: 10px 0;
}

.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
    font-weight: 500;
    line-height: 1.75;
    margin: 10px 0;
}

.page-content h2 {
    font-size: 25px;
}

.page-content h3 {
    font-size: 21px;
}

.page-content h4 {
    font-size: 19px;
}

.page-content h5 {
    font-size: 18px;
}

.page-content h5 {
    font-size: 17px;
}

/* Hero block */
.hero {
    padding: 25px 0 10px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

@media (max-width: 1024px) {
    .hero {
        padding: 25px 0 25px 0;
    }
}

.hero-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* margin-bottom: 35px; */
}

.hero-top__left {
    width: 60%;
}

@media (max-width: 1024px) {
    .hero-top__left {
        width: 100%;
    }
}

.hero-top__right {
    width: 40%;
    max-height: 250px;
}

@media (max-width: 1024px) {
    .hero-top__right {
        display: none;
    }
}

.hero-top__right img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.hero__title {
    font-size: 45px;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1024px) {
    .hero__title {
        font-size: 35px;
        line-height: 1.1;
    }
}

.hero-top__left p {
    font-size: 17px;
    line-height: 1.25;
}

.hero__text-wrapper {
    margin-bottom: 20px;
}

.hero__text-wrapper,
.hero__text-short,
.hero__text-full,
.hero__text-full p {
    font-size: 17px;
    line-height: 1.6 !important;
    color: #fff;
    margin-bottom: 10px;
}

.hero__text-full {
    white-space: normal;
}

.hero__read-more {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.hero__read-more:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero__author {
    margin-top: 25px;
}

.hero-author {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

@media (max-width: 737px) {
    .hero-author {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 15px;
    }
}

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

.hero-author__left img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.hero-author__information p {
    font-size: 14px !important;
    line-height: 1.25;
    color: #fff;
}

.hero-author__information p:first-child {
    opacity: .7;
}

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

@media (max-width: 545px) {
    .hero-author__right {
        flex-direction: column;
        align-items: flex-start;
    }
}

.hero-author__date {
    display: flex;
    align-items: center;
    font-size: 14px !important;
    color: #ffffff;
}

.hero-author__date svg {
    width: 25px;
    height: 25px;
    stroke: #ffffff;
    margin-right: 5px;
}

/* Tooltip */
.hero-author__tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 6px;
    cursor: pointer;
}

.hero-author__tooltip-wrapper {
    background-color: #333333;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 545px) {
    .hero-author__tooltip-wrapper {
        display: none;
    }
}

.hero-author__tooltip-wrapper svg {
    width: 15px;
    height: 15px;
}

.info-tooltip svg {
    fill: #ffffff;
    stroke: #ffffff;
}

.job-tooltip svg {
    stroke: #ffffff;
}

.hero-author__tooltip-icon {
    color: #666;
    transition: color 0.2s ease;
}

.hero-author__tooltip-wrapper:hover .hero-author__tooltip-icon {
    color: #0073e6;
}

.hero-author__tooltip {
    width: 250px;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    z-index: 10;

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);;
}

.hero-author__tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;
}

.hero-author__tooltip-wrapper:hover .hero-author__tooltip {
    opacity: 1;
    visibility: visible;
}

/* Top List Block */
.top-list {
    padding: 20px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
}

.top-list__title {
    font-size: 32px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.top-list__items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.top-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .top-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.top-item__logo {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .top-item__logo {
        width: 100% !important;
    }
}

.top-item__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .top-item__logo img {
        width: 100%;
        object-fit: cover !important;
    }
}

.top-item__content {
    flex: 1;
}

.top-item__name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.top-item__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.top-item__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #555;
}

.top-item__check {
    flex-shrink: 0;
}

.top-item__action {
    flex-shrink: 0;
}

.top-item__action a {
    padding: 10px 24px;
    padding: 20px 48px;
}

@media (max-width: 1024px) {
    .top-item__action {
        width: 100%;
    }

    .top-item__action a {
        width: 100%;
        display: block !important;
    }
}

.top-item__button {
    /* display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #7FFF7F 0%, #4CAF50 100%); */
    /* color: #333;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    text-transform: uppercase; /*
    transition: transform 0.2s ease, box-shadow 0.2s ease; */
}

.top-item__button:hover {
    /* transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3); */
}

@media (max-width: 768px) {
    .top-item__button {
        width: 100%;
        text-align: center;
    }
}

/* Content block */
.content-block {

}

.content-block h2 {
    font-size: 27px;
    line-height: 2.1;
    font-weight: 500;
}

.content-block h3 {
    font-size: 25px;
    line-height: 2.1;
    font-weight: 500;
}

.content-block h4 {
    font-size: 21px;
    line-height: 2.1;
    font-weight: 500;
}

.content-block img {
    width: 100%;
    object-fit: cover;
    margin-top: 15px;
}

.content-block p,
.content-block ul {
    font-size: 17px;
    line-height: 1.5;
}

.content-block ul {
    margin: 15px 0;
}

.content-block ul li {
    position: relative;
    padding-left: 25px;
}

.content-block ul li::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: greenyellow;
    position: absolute;
    left: 0;
    top: 7px;
}

.wp-block-list li {
    font-size: 17px;
    line-height: 1.7;
    position: relative;
    padding-left: 15px;
}

.wp-block-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: absolute;
    left: 0;
    top: 10px;
}

.content-block p strong,
.content-block p b {
    font-weight: 700;
}

/* Review list */
.mini-review-card {
    margin-bottom: 30px;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto 30px;
    /* padding: 0 20px; */
    padding: 0;
}

.mini-review-card__container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Header */
.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.review-header__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rank-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rank-badge svg {
    color: #FFD700;
    width: 24px;
    height: 24px;
}

.rank-number {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
}

.casino-title {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.review-header__right {
    display: flex;
    align-items: center;
}

.bonus-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
}

/* Content */
.review-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 30px;
    background: #fff;
}

.review-section {
    padding: 20px;
    border-radius: 12px;
    background: #f8f9fa;
}

.pros-section {
    border-left: 4px solid #10b981;
}

.cons-section {
    border-left: 4px solid #ef4444;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.section-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
}

.pros-header svg {
    color: #10b981;
}

.cons-header svg {
    color: #ef4444;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

.pros-item svg {
    color: #10b981;
    flex-shrink: 0;
    margin-top: 2px;
}

.cons-item svg {
    color: #ef4444;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Warning Box */
.warning-box {
    margin: 15px;
    /* padding: 16px 20px; */
    /* background: #fff3cd; */
    /* border-left: 4px solid #ffc107; */
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffff;
}

.warning-box svg {
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-text {
    font-size: 14px;
    line-height: 1.6;
    color: #ffffff;
    margin: 0;
}

/* Footer */
.review-footer {
    display: flex;
    gap: 30px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid #e5e7eb;
}

.review-footer .footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-footer .footer-item svg {
    color: #667eea;
    flex-shrink: 0;
}

.footer-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-label {
    font-size: 12px;
    color: #6b7280;
    font-weight: 500;
}

.footer-value {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
}

/* Responsive */
@media (max-width: 1024px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .review-header__left {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .review-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .review-header {
        padding: 20px;
    }
    
    .casino-title {
        font-size: 22px;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 15px;
    }
}

/* Benefits Block */
.benefits-block {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
}

.benefits-block__items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (max-width: 1024px) {
    .benefits-block__items {
        gap: 25px;
    }
}

.benefit-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .benefit-item {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .benefit-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.benefit-item__icon {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-color: #F3F4F6; */
    border-radius: 50%;
    /* padding: 20px; */
}

@media (max-width: 1024px) {
    .benefit-item__icon {
        width: 100%;
        height: auto;
        /* height: 120px; */
    }
}

@media (max-width: 768px) {
    .benefit-item__icon {
        /* width: 100px;
        height: 100px; */
    }
}

.benefit-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-item__content {
    flex: 1;
}

.benefit-item__content p {
    color: #ffffff;
}

.benefit-item__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.benefit-item__text {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.benefit-item__text:last-child {
    margin-bottom: 0;
}

/* Table of Content */
.table-content {
    padding: 40px 0;
    background-color: #F9FAFB;
}

.table-content__container h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1F2937;
}

.table-content__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-content__item {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.table-content__item::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0073e6;
    font-weight: bold;
}

.table-content__link {
    color: #374151;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease;
}

.table-content__link:hover {
    color: #0073e6;
    text-decoration: underline;
}

.toc-section {
            /* width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px; */
            padding-bottom: 35px;
            padding: 15px 0;
        }

        @media (max-width: 1024px) {
            .toc-section {
                /* padding: 15px; */
            }
        }

        .toc-section__container {
            width: 100% !important;
            padding: 0 !important;
        }

        .toc-section__container .toc {
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            overflow: hidden;
        }

        .toc-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 20px;
            background: #f8f9fa;
            cursor: pointer;
            user-select: none;
            transition: background 0.2s;
        }

        .toc-header:hover {
            background: #e9ecef;
        }

        .toc-title {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
        }

        .toc-icon {
            font-size: 20px;
        }

        .toggle-icon {
            font-size: 20px;
            transition: transform 0.3s ease;
            color: #666;
        }

        .toggle-icon.open {
            transform: rotate(180deg);
        }

        .toc-content {
            max-height: 0;
            overflow: hidden;
            overflow-y: auto;
            transition: max-height 0.4s ease, padding 0.4s ease;
            padding: 0 20px;
        }

        .toc-content.open {
            max-height: 1000px;
            padding: 20px;
        }

        .toc-list {
            list-style: none;
        }

        .toc-item {
            margin-bottom: 12px;
        }

        .toc-link {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            text-decoration: none;
            color: #333;
            font-size: 15px;
            line-height: 1.5;
            padding: 8px;
            border-radius: 4px;
            transition: background 0.2s;
        }

        .toc-link:hover {
            background: #f8f9fa;
            color: #0066cc;
        }

        .toc-number {
            color: #666;
            font-weight: 600;
            min-width: 25px;
        }

        .toc-item-title {
            flex: 1;
        }

        .toc-subsection {
            list-style: none;
            margin-left: 37px;
            margin-top: 8px;
        }

        .toc-subsection .toc-link {
            font-size: 14px;
            padding: 6px 8px;
        }

        .toc-subsection .toc-number {
            min-width: 35px;
        }

        @media (max-width: 600px) {
            .toc-header {
                padding: 15px;
            }

            .toc-title {
                font-size: 16px;
            }

            .toc-content.open {
                padding: 15px;
            }
        }

        html {
            scroll-behavior: smooth;
        }

/* Footer */
.main-footer {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    margin-top: 80px;
    box-shadow: 0 -8px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.main-footer::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 35px;
    position: relative;
    z-index: 1;
}

.footer__logo {
    max-width: 220px;
    transition: transform 0.3s ease, filter 0.3s ease;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.footer__logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer__logo a {
    display: inline-block;
}

.footer__logo img {
    max-width: 100%;
    height: auto;
}

.footer__copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 600px;
}

.footer__copyright p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .main-footer {
        padding: 40px 0 30px;
        margin-top: 60px;
    }

    .footer__logo {
        max-width: 180px;
        padding: 15px;
    }

    .footer__copyright {
        padding-top: 15px;
    }

    .footer__copyright p {
        font-size: 13px;
    }
}

/* Steps Block */
.steps-block {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 25px;
}

.steps-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.steps-list::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 48px;
    bottom: 90px;
    width: 2px;
    border-left: 2px dashed #7c5cce;
    z-index: 1;
}

.step-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    position: relative;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #7c5cce 0%, #5a3fb8 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(124, 92, 206, 0.3);
    position: relative;
    z-index: 2;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-content p {
    word-break: break-all;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 !important;
}

.step-description {
    font-size: 16px;
    line-height: 1.7;
    color: #ffffff;
}

.step-description p {
    margin: 0 !important;
}

.step-description p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .steps-block {
        padding: 40px 0;
    }
    
    .steps-list::before {
        left: 20px;
        top: 40px;
        bottom: 75px;
    }
    
    .step-item {
        gap: 15px;
        padding: 20px 0;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .step-title {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 15px;
    }
}

/* FAQ Block */
.faq-block {
    padding: 60px 0;
    background: #fff;
}

.faq-block__title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #96b8df;
}

.faq-item.active .faq-question {
    background: #7fa4d1;
}

.faq-question-text {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    font-size: 28px;
    font-weight: 400;
    color: #ffffff;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
}

.faq-answer-content {
    padding: 20px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.faq-answer-content p {
    margin: 0 0 15px 0;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-block__title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .faq-answer-content {
        padding: 15px 20px;
        font-size: 15px;
    }
    
    .faq-icon {
        font-size: 24px;
    }
}

/* Containers */
.benefits-block__container,
.hero__container,
.mini-review-card__container,
.toc-section__container,
.top-list__container {
    /* width: 100% !important; */
    /* padding: 0 !important; */
}

/* Author Block */
.author-block {
    padding: 50px 0;
    /* background: #f8f9fa; */
}

.author-card {
    display: flex;
    gap: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.author-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.author-card__avatar {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.author-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.author-card__header {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
}

.author-card__name {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px 0 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.author-card__role {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 !important;
    font-weight: 500;
}

.author-card__bio {
    flex: 1;
}

.author-card__bio p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 !important;
}

.author-card__contacts {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.author-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-card__link:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.author-card__link svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .author-block {
        padding: 30px 0;
    }
    
    .author-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
        gap: 25px;
    }
    
    .author-card__avatar {
        width: 140px;
        height: 140px;
    }
    
    .author-card__name {
        font-size: 26px;
    }
    
    .author-card__contacts {
        justify-content: center;
        gap: 15px;
    }
    
    .author-card__link {
        font-size: 13px;
        padding: 8px 16px;
    }
}

/* Table */
.ntb_table_wrapper {
    padding: 25px 0;
}

.ntb_table_wrapper >.table {
    width: 100%;
    border-color: #52346f !important;
    border-radius: 25px;
}

.ntb_table_wrapper >.table tbody tr td {
    min-width: 365px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-color: #52346f !important;
}

.ntb_table_wrapper >.table tbody tr {
    /* border-bottom: 5px solid #764ba2; */
    border-bottom-color: #52346f !important;
}

.ntb_table_wrapper >.table tbody tr td span {
    color: #ffffff !important;
}

/* Author block */
.author-container {
            /* max-width: 800px; */
            max-width: 100%;
            margin: 0 auto;
            /* background: white; */
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 25px;
            position: relative;
        }

        .author-block__container {
            width: 100% !important;
            padding: 0 !important;
        }

        .arrow-indicator {
            position: absolute;
            top: -15px;
            left: 30px;
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-bottom: 15px solid #ff4d4d;
        }

        .arrow-indicator::after {
            content: '';
            position: absolute;
            top: 2px;
            left: -13px;
            width: 0;
            height: 0;
            border-left: 13px solid transparent;
            border-right: 13px solid transparent;
            border-bottom: 13px solid white;
        }

        .author-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 15px;
        }

        .author-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
            background: #e0e0e0;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info {
            flex: 1;
        }

        .author-name {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-top: 0;
            margin-bottom: 5px;
        }

        .author-role {
            font-size: 14px;
            color: #666;
            margin-bottom: 0;
        }

        .profile-link {
            color: #0066cc;
            text-decoration: none;
            font-style: italic;
        }

        .profile-link:hover {
            text-decoration: underline;
        }

        .author-bio {
            font-size: 14px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 15px;
        }

        .author-contact {
            display: flex;
            gap: 15px;
            font-size: 13px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .contact-link {
            color: #0066cc;
            text-decoration: none;
        }

        .contact-link:hover {
            text-decoration: underline;
        }

        .contact-separator {
            color: #999;
        }

        .author-meta {
            font-size: 12px;
            color: #666;
            line-height: 1.6;
        }

        .meta-item {
            margin-bottom: 3px;
        }

        @media (max-width: 600px) {
            .author-container {
                padding: 20px 15px;
            }

            .author-header {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .author-avatar {
                width: 80px;
                height: 80px;
            }

            .author-contact {
                justify-content: center;
            }

            .author-meta {
                text-align: center;
            }
        }

        /* WordPress Block Editor Styles */
        .wp-block-heading:not(.benefits-block .wp-block-heading) {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #ffffff;
            padding: 15px 25px;
            border-radius: 12px;
            margin: 30px 0 20px 0;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
            position: relative;
        }
        
        /* Параграфи після заголовків */
        .wp-block-heading + p,
        .wp-block-heading + * p {
            margin-top: 15px;
            font-size: 17px;
            line-height: 1.7;
            color: #333;
        }
        
        /* Адаптивність для заголовків */
        @media (max-width: 768px) {
            .wp-block-heading {
                padding: 12px 20px;
                font-size: 20px;
                margin: 20px 0 15px 0;
            }
            
            .wp-block-heading + p,
            p {
                font-size: 16px;
            }
        }