  /* pg18-specific styles - Expert Advisors page */
        .pg18-ea-hero {
            padding: 100px 0 80px;
            background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        
        .pg18-hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(30, 136, 229, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(130, 211, 43, 0.08) 0%, transparent 50%);
            opacity: 0.7;
            z-index: 0;
        }
        
        .pg18-trust-line {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 2rem;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            max-width: 800px;
            margin: 2rem auto 0;
        }
        
        .pg18-trust-line span {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .pg18-feature-grid-3col {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        
        .pg18-feature-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .pg18-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pg18-feature-card i {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        
        .pg18-capabilities-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .pg18-capability-item {
            background: var(--light-bg);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid var(--accent-color);
        }
        
        .pg18-delivery-process {
            counter-reset: pg18-process-step;
            margin: 3rem 0;
        }
        
        .pg18-process-step {
            position: relative;
            padding: 2rem 0 2rem 4rem;
            border-left: 2px solid var(--light-gray);
            margin-bottom: 0;
        }
        
        .pg18-process-step:last-child {
            border-left: 2px solid transparent;
        }
        
        .pg18-process-step::before {
            counter-increment: pg18-process-step;
            content: counter(pg18-process-step);
            position: absolute;
            left: -16px;
            top: 2rem;
            width: 32px;
            height: 32px;
            background: var(--primary-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        
        .pg18-audience-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .pg18-audience-card {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--border-color);
        }
        
        .pg18-audience-card i {
            font-size: 2rem;
            color: var(--premium-blue);
            margin-bottom: 1rem;
        }
        
        .pg18-cta-bottom {
            background: linear-gradient(135deg, #0f172a 0%, #1a3a5f 100%);
            color: white;
            padding: 5rem 0;
            text-align: center;
            border-radius: 20px;
            margin: 4rem 0;
        }
        
        /* Telegram button specific for pg18 */
        .pg18-telegram-btn {
            background: linear-gradient(135deg, #0088cc, #006699);
            border: none;
            color: white !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        
        .pg18-telegram-btn:hover {
            background: linear-gradient(135deg, #0099e6, #0077b3);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(0, 136, 204, 0.3);
            color: white !important;
        }
        
        /* pg18 specific section spacing */
        .pg18-section {
            padding: 5rem 0;
        }
        
        .pg18-section-alt {
            background: var(--light-bg);
            padding: 5rem 0;
        }
        
        /* Responsive adjustments for pg18 */
        @media (max-width: 768px) {
            .pg18-feature-grid-3col,
            .pg18-capabilities-grid,
            .pg18-audience-cards {
                grid-template-columns: 1fr;
            }
            
            .pg18-process-step {
                padding: 2rem 0 2rem 3rem;
            }
            
            .pg18-trust-line {
                gap: 10px;
                padding: 0.75rem;
            }
            
            .pg18-trust-line span {
                font-size: 0.8rem;
            }
            
            .pg18-cta-bottom {
                padding: 3rem 1rem;
                margin: 3rem 0;
                border-radius: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .pg18-section,
            .pg18-section-alt {
                padding: 3rem 0;
            }
            
            .pg18-feature-card,
            .pg18-audience-card {
                padding: 1.5rem;
            }
        }
        /* ===== PG18: Expert Advisors Page Specific Styles ===== */
.pg18-page .hero-benefits-grid {
    max-width: 1000px;
    margin: 2rem auto;
}

.pg18-page .benefits-column {
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.pg18-page .benefits-column h4 {
    color: var(--primary-color);
}

.pg18-page .hero-benefits-list li {
    color: var(--text-color);
}

/* Animation for pg18 elements */
@keyframes pg18FadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pg18-animated {
    animation: pg18FadeInUp 0.6s ease forwards;
}

/* Ensure existing components work well with pg18 */
.pg18-page .section-title h2::after {
    background: linear-gradient(to right, var(--accent-color), #82D32B);
}

.pg18-page .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Button fixes for pg18 */
.pg18-page .primary-btn:hover,
.pg18-page .secondary-btn:hover,
.pg18-page .pg18-telegram-btn:hover {
    color: white !important;
    transform: translateY(-2px);
}
.pg18-ea-hero h1 {
    color: white !important;
}

/* Ensure hero text is visible */
.pg18-ea-hero .hero-lead {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Fix for any other text in hero */
.pg18-ea-hero .section-title h2 {
    color: white !important;
}
@media (min-width: 768px) {
    .pg18-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pg18-capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Checklist styles */
.pg18-checklist-container {
    max-width: 800px;
    margin: 2rem auto 0;
}

.pg18-checklist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.pg18-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.pg18-checklist-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(230, 162, 60, 0.3);
}

.pg18-checklist-item i {
    color: #82D32B;
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.pg18-checklist-item h4 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.pg18-checklist-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

/* Responsive checklist */
@media (max-width: 768px) {
    .pg18-checklist {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pg18-checklist-item {
        padding: 1.2rem;
    }
}

/* Optional: Animation for checklist items */
@keyframes pg18ChecklistFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pg18-checklist-item:nth-child(1) { animation-delay: 0.1s; }
.pg18-checklist-item:nth-child(2) { animation-delay: 0.2s; }
.pg18-checklist-item:nth-child(3) { animation-delay: 0.3s; }
.pg18-checklist-item:nth-child(4) { animation-delay: 0.4s; }
.pg18-checklist-item:nth-child(5) { animation-delay: 0.5s; }
.pg18-checklist-item:nth-child(6) { animation-delay: 0.6s; }
.pg18-checklist-item:nth-child(7) { animation-delay: 0.7s; }
.pg18-checklist-item:nth-child(8) { animation-delay: 0.8s; }

.pg18-checklist-item {
    animation: pg18ChecklistFadeIn 0.5s ease forwards;
    opacity: 0;
}
.pg18-exclusive-feature {
    background: linear-gradient(135deg, rgba(230, 162, 60, 0.1), rgba(130, 211, 43, 0.05));
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem 0 3rem;
    border: 2px solid rgba(230, 162, 60, 0.3);
    position: relative;
    text-align: center;
}

.pg18-exclusive-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #e6a23c, #f59e0b);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 5px 15px rgba(230, 162, 60, 0.3);
}

.pg18-exclusive-feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.8rem;
}

.pg18-exclusive-feature h3 i {
    color: #e6a23c;
}

.pg18-exclusive-feature p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

.pg18-feature-benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.pg18-feature-benefits span {
    background: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.pg18-feature-benefits i {
    color: #82D32B;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pg18-exclusive-feature {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0 2.5rem;
    }
    
    .pg18-exclusive-feature h3 {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 5px;
    }
    
    .pg18-feature-benefits {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .pg18-feature-benefits span {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}