/* Auxiliary Pages Styling */

/* Policy Sections */
.policy-sections {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(254, 254, 254, 0.8);
    border-left: 4px solid #8b6f47;
    border-radius: 0 8px 8px 0;
}

.policy-section h2 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #1a1a1a;
    border-bottom: 1px solid rgba(139, 111, 71, 0.3);
    padding-bottom: 10px;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Page Title Section */
.page-title {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, rgba(254, 254, 254, 0.95), rgba(139, 111, 71, 0.05));
    text-align: center;
}

.page-title h1 {
    font-size: 42px;
    font-weight: normal;
    margin-bottom: 20px;
    color: #1a1a1a;
    letter-spacing: 1px;
}

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

/* Content Sections */
.about-content {
    padding: 80px 0;
}

.content-block {
    margin-bottom: 60px;
}

.content-block.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-image {
    margin: 30px 0;
}

.content-image img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.teacher-illustration,
.craft-illustration,
.innovation-illustration {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.teacher-illustration svg,
.craft-illustration svg,
.innovation-illustration svg {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-block h2 {
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: left;
    border-bottom: 2px solid rgba(139, 111, 71, 0.3);
    padding-bottom: 15px;
}

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

/* Policy Content */
.policy-content {
    padding: 80px 0;
    min-height: 400px;
}

.content-placeholder {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f8f8f8, #e8e8e8);
    border: 2px dashed #8b6f47;
    border-radius: 8px;
    text-align: center;
}

.content-placeholder p {
    color: #8b6f47;
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-title h1 {
        font-size: 32px;
    }
    
    .page-title p {
        font-size: 16px;
        padding: 0 20px;
    }
    
    .content-block {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .content-block h2 {
        font-size: 26px;
    }
    
    .content-placeholder {
        margin: 0 20px;
        padding: 40px 30px;
    }
    
    .policy-section {
        margin: 0 20px 30px 20px;
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 20px;
    }
    
    .content-image img {
        height: 200px;
    }
    
    .teacher-illustration svg,
    .craft-illustration svg,
    .innovation-illustration svg {
        max-width: 300px;
    }
}