/* Additional styles for auxiliary pages */

/* Policy Content Styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    background: #FFF;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.08);
    border: 1px solid #E8F5E8;
}

.policy-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 24px;
    text-align: center;
    line-height: 1.2;
}

.policy-intro {
    font-size: 18px;
    color: #555;
    text-align: center;
    margin-bottom: 48px;
    padding: 24px;
    background: #F9FDF6;
    border-radius: 12px;
    border: 1px solid #E8F5E8;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E8F5E8;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.policy-section h4 {
    font-size: 22px;
    font-weight: 600;
    color: #2D5016;
    margin-bottom: 16px;
    line-height: 1.3;
}

.policy-section h5 {
    font-size: 18px;
    font-weight: 600;
    color: #8B4513;
    margin: 24px 0 12px 0;
    line-height: 1.3;
}

.policy-section p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.policy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-section li {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-info {
    background: #F4F9F0;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #E8F5E8;
    margin-top: 16px;
}

.contact-info p {
    margin-bottom: 8px;
}

.contact-info a {
    color: #F4A900;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #F4F9F0 0%, #E8F5E8 100%);
    padding: 80px 0;
    text-align: center;
}

.page-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 16px;
    line-height: 1.2;
}

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

/* Page Section */
.page-section {
    padding: 80px 0;
    background-color: #FFF;
}

.page-section:nth-child(even) {
    background-color: #FAFCF7;
}

/* About Page Specific Styles */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: #2D5016;
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.2;
}

.content-with-visual {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 32px;
}

.text-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.visual-content {
    display: flex;
    justify-content: center;
}

.visual-content svg {
    max-width: 100%;
    height: auto;
}

.values-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 32px;
}

.values-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-photo, .celebration-photo {
    margin-top: 32px;
}

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

.section-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Content Area for Policy Pages */
.content-area {
    max-width: 800px;
    margin: 0 auto;
    background: #FFF;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.08);
    border: 1px solid #E8F5E8;
}

.placeholder-text {
    font-size: 16px;
    color: #999;
    font-style: italic;
    text-align: center;
    padding: 64px 0;
    margin: 0;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.expertise-card {
    background: #F9FDF6;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #E8F5E8;
}

.expertise-card svg {
    margin-bottom: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.expertise-card h4 {
    color: #2D5016;
    margin-bottom: 16px;
    font-size: 20px;
}

.expertise-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Values List */
.values-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.values-list li {
    padding: 20px 0;
    border-bottom: 1px solid #E8F5E8;
    font-size: 16px;
    line-height: 1.6;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li strong {
    color: #2D5016;
    font-weight: 600;
}

/* Image Styles for About Page */
.team-image, .celebration-image {
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    border-radius: 16px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 4px 16px rgba(45, 80, 22, 0.15);
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .policy-content h3 {
        font-size: 28px;
    }
    
    .policy-intro {
        font-size: 16px;
        padding: 20px;
    }
    
    .policy-section h4 {
        font-size: 20px;
    }
    
    .content-with-visual,
    .values-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-content h3 {
        font-size: 28px;
    }
    
    .page-header {
        padding: 64px 0;
    }
    
    .page-header h2 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .page-section {
        padding: 64px 0;
    }
    
    .content-area {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .expertise-card {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .policy-content {
        padding: 24px 16px;
        margin: 0 8px;
    }
    
    .policy-content h3 {
        font-size: 24px;
    }
    
    .about-content h3 {
        font-size: 24px;
    }
    
    .page-header h2 {
        font-size: 28px;
    }
    
    .content-area {
        padding: 24px 16px;
        margin: 0 8px;
    }
}