/* Auxiliary pages specific styles */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.page-header {
    text-align: center;
    padding: 60px 0;
    background: #f8f5f0;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    color: #3C2415;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-section {
    max-width: 800px;
    margin: 0 auto 60px;
}

.content-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #3C2415;
    margin-bottom: 24px;
    border-bottom: 2px solid #7CB342;
    padding-bottom: 8px;
}

.text-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 24px;
}

.empty-content {
    text-align: center;
    padding: 80px 40px;
    background: #f8f5f0;
    border-radius: 12px;
}

.empty-content p {
    color: #888;
    font-size: 16px;
}

/* Order form styles */
.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #3C2415;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7CB342;
    box-shadow: 0 0 0 2px rgba(124, 179, 66, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    background: #7CB342;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
}

.submit-button:hover {
    background: #689F38;
}

.contact-alternative {
    max-width: 600px;
    margin: 60px auto 0;
    padding: 40px;
    background: #f8f5f0;
    border-radius: 12px;
    text-align: center;
}

.contact-alternative h3 {
    font-size: 20px;
    font-weight: 600;
    color: #3C2415;
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-method {
    color: #666;
    line-height: 1.6;
}

.contact-method strong {
    color: #3C2415;
}

/* About page specific styles */
.about-image {
    margin: 32px 0;
    text-align: center;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.about-illustration {
    margin: 32px 0;
    text-align: center;
}

.content-svg {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .page-header {
        padding: 40px 20px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .order-form {
        margin: 0 20px;
        padding: 30px 20px;
    }
    
    .contact-alternative {
        margin: 40px 20px 0;
        padding: 30px 20px;
    }
}