/* Additional styles for auxiliary pages */

.page-main {
    min-height: 70vh;
    padding: 80px 0;
    background: #FEFDFB;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E5E5E5;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #666;
    font-style: italic;
}

.content-block {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 45, 45, 0.08);
}

.content-block h2 {
    font-size: 28px;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #7BA05B;
}

.content-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

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

.placeholder-content {
    background: #F8F6F2;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed #D4A574;
}

.placeholder-content p {
    color: #7BA05B;
    font-style: italic;
    font-size: 18px;
    margin: 0;
}

/* About page specific styles */
.text-center {
    text-align: center;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.mission-text {
    text-align: left;
}

.mission-visual .image-placeholder {
.mission-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 45, 45, 0.1);
}

.philosophy-visual {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.expertise-text {
    text-align: left;
}

.expertise-visual .image-placeholder {
.expertise-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(45, 45, 45, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 24px;
}

.value-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2D2D2D;
}

.value-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .content-block {
        padding: 24px;
        margin-bottom: 20px;
    }
    
    .content-block h2 {
        font-size: 24px;
    }
    
    .placeholder-content {
        padding: 30px 20px;
    }
    
    .placeholder-content p {
        font-size: 16px;
    }
    
    .mission-content,
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-text,
    .expertise-text {
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-visual img,
    .expertise-visual img {
        height: 250px;
    }
}