.page-content {
    padding: 3rem 0;
}

.memory-section {
    margin-bottom: 4rem;
}

.memory-section h1 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.memory-content {
    margin-bottom: 3rem;
}

.memory-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}


.archive-section {
    background: linear-gradient(135deg, var(--light) 0%, #e8e8e8 100%);
    padding: 3rem;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.archive-section h2 {
    font-size: 2.5rem;
    color: var(--purple);
    margin-bottom: 2rem;
    text-align: center;
}

.archive-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

.archive-content h3 {
    font-size: 1.5rem;
    color: var(--purple);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.archive-content h3:first-child {
    margin-top: 0;
}

.gallery-section {
    margin-bottom: 4rem;
}

.gallery-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.gallery-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

.gallery-description {
    padding: 1.5rem;
    flex: 1;
}

.gallery-description h3 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.gallery-description p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

