.page-content {
    padding: 3rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 3px solid var(--gold-orange);
}

.page-header h1 {
    font-size: 3rem;
    color: var(--gold-orange);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
}

.content-section {
    margin-bottom: 3rem;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.section-text h2 {
    font-size: 2rem;
    color: var(--gold-orange);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-orange);
}

.section-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.accordion-section {
    margin: 3rem 0;
}

.accordion-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.info-section {
    margin-top: 3rem;
}

.info-box {
    background: linear-gradient(135deg, var(--dark-orange) 0%, var(--deep-orange) 100%);
    color: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.info-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--gold-orange);
}

.info-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .section-content {
        grid-template-columns: 1fr;
    }

    .info-box {
        padding: 2rem;
    }
}

