.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(199, 125, 255, 0.6), 0 0 40px rgba(157, 78, 221, 0.4);
    font-weight: bold;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold-color);
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.features-list-section {
    padding: 4rem 0;
    padding-top: 6rem;
    background: var(--bg-section);
    border-top: 2px solid var(--neon-purple);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.2);
    border: 2px solid var(--neon-purple);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(199, 125, 255, 0.4);
    border-color: var(--neon-pink);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.5);
}

.feature-item p {
    line-height: 1.8;
    color: var(--text-light);
}

.advantages-section {
    padding: 4rem 0;
    background: var(--bg-dark);
    border-top: 2px solid var(--neon-purple);
}

.advantages-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.table-column {
    background: var(--bg-section);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.2);
    border: 2px solid var(--neon-purple);
}

.table-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-purple);
    text-shadow: 0 0 10px rgba(199, 125, 255, 0.5);
}

.table-column p {
    line-height: 1.8;
    color: var(--text-light);
}

.technical-accordion-section {
    padding: 4rem 0;
    background: var(--bg-section);
    border-top: 2px solid var(--neon-purple);
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-section);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.2);
    border: 1px solid var(--neon-purple);
}

.accordion-header {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    transition: all 0.3s;
    border-bottom: 2px solid var(--neon-purple);
}

.accordion-header:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--bg-section) 100%);
    box-shadow: 0 0 20px rgba(199, 125, 255, 0.3);
}

.accordion-header h3 {
    font-size: 1.3rem;
    margin: 0;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.accordion-item.active .accordion-content {
    max-height: 2000px;
    padding: 1.5rem;
}

.accordion-content {
    background: var(--bg-section);
}

.accordion-content p {
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.accordion-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.accordion-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1.1rem;
    }

    .advantages-table {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }
}

