/* Origin Section */
.origin-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(5, 8, 17, 0.5) 0%, rgba(10, 14, 39, 0.5) 100%);
}

.origin-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.origin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.origin-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.origin-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Teachings Section */
.teachings-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.6) 0%, rgba(5, 8, 17, 0.6) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.teachings-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(5, 8, 17, 0.8) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background-color: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
}

.accordion-header:hover {
    background-color: rgba(0, 212, 255, 0.1);
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
    transition: transform 0.3s;
}

.accordion-item.active .accordion-header::after {
    content: '-';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 1.5rem;
}

.accordion-content p {
    padding: 1.5rem 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Ancient World Section */
.ancient-world-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.6) 0%, rgba(5, 8, 17, 0.6) 100%);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.ancient-world-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.ancient-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ancient-item {
    background: linear-gradient(135deg, rgba(10, 14, 39, 0.8) 0%, rgba(5, 8, 17, 0.8) 100%);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 212, 255, 0.1);
}

.ancient-item:hover {
    border-color: var(--neon-blue);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

.ancient-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.ancient-item p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Missions Section */
.missions-section {
    padding: 4rem 0;
}

.missions-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.missions-content {
    max-width: 800px;
    margin: 0 auto;
}

.missions-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .origin-section h1 {
        font-size: 2rem;
    }

    .origin-content {
        grid-template-columns: 1fr;
    }
}

