/* Additional styles for auxiliary pages */
.page-main {
    padding: 60px 0 80px;
    min-height: calc(100vh - 200px);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--cedar-green);
    margin-bottom: 16px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0;
}

.page-section {
    margin-bottom: 50px;
}

.page-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--cedar-green);
    margin-bottom: 30px;
    text-align: left;
}

.content-block {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.content-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.about-list {
    list-style: none;
    margin-top: 20px;
}

.about-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
}

.about-list li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--persimmon-red);
    font-size: 14px;
}

.about-list strong {
    color: var(--cedar-green);
}

/* About page specific styles */
.about-content-with-image {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.about-content-with-svg {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 0 0 300px;
}

.about-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.15);
}

.about-svg {
    flex: 0 0 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-main {
        padding: 40px 0 60px;
    }
    
    .page-header {
        margin-bottom: 40px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .content-block {
        padding: 30px 20px;
    }
    
    .page-section h2 {
        font-size: 24px;
    }
    
    .about-content-with-image,
    .about-content-with-svg {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-image {
        flex: none;
        width: 100%;
    }
    
    .about-img {
        height: 180px;
    }
    
    .about-svg {
        flex: none;
    }
}