.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);
}

.notes-section {
    margin: 3rem 0;
}

.notes-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.notes-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.note-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border-top: 4px solid var(--primary-orange);
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.note-image {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    height: 250px;
}

.note-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    object-fit: cover;
    object-position: center;
}

.note-item h3 {
    font-size: 1.5rem;
    color: var(--gold-orange);
    margin-bottom: 1rem;
}

.note-item p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.gallery-section {
    margin: 3rem 0;
}

.gallery-section .section-title {
    text-align: center;
    margin-bottom: 2rem;
}

.gallery-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);
}

.gallery-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.gallery-description h3 {
    font-size: 1.8rem;
    color: var(--gold-orange);
    margin-bottom: 1rem;
}

.gallery-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .section-content,
    .gallery-content {
        grid-template-columns: 1fr;
    }

    .notes-content {
        grid-template-columns: 1fr;
    }
}

