/* Auxiliary Pages CSS */

/* Last Updated Text */
.last-updated {
    font-size: 14px;
    color: #7a7a7a;
    font-style: italic;
    margin-top: 8px;
}

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

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

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

/* Brand Link */
.brand-link {
    text-decoration: none;
    color: inherit;
}

.brand-link:hover .brand-name {
    color: #7CB342;
    transition: color 0.3s ease;
}

/* Main Content */
.main-content {
    padding: 80px 0;
    min-height: 60vh;
    text-align: left;
}

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

.content-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    border-bottom: 3px solid #7CB342;
    padding-bottom: 12px;
}

.content-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
    margin-top: 32px;
}

.content-block h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 24px;
}

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

.content-block ul {
    margin: 20px 0 20px 20px;
    color: #5a6c7d;
}

.content-block li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.content-block a {
    color: #7CB342;
    text-decoration: none;
    font-weight: 500;
}

.content-block a:hover {
    color: #689f38;
    text-decoration: underline;
}

/* Contact Details */
.contact-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #7CB342;
    margin: 20px 0;
}

.contact-details p {
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-details p:last-child {
    margin-bottom: 0;
}

/* Content with Visual Layout */
.content-with-visual {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.content-with-visual.reverse {
    grid-template-columns: 1fr 2fr;
}

.content-with-visual.reverse .content-text {
    order: 2;
}

.content-with-visual.reverse .content-visual {
    order: 1;
}

.about-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.approach-item {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-top: 4px solid #7CB342;
}

.approach-icon {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
}

.approach-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 16px;
    margin-top: 0;
}

.approach-item p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Empty Content Placeholder */
.empty-content {
    background: #fafafa;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #ddd;
}

.empty-content p {
    font-size: 18px;
    color: #7a7a7a;
    margin-bottom: 16px;
}

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

/* Values Grid for About Page */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #7CB342;
    text-align: center;
}

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

.value-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    margin-top: 0;
}

.value-item p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .main-content {
        padding: 60px 0;
    }
    
    .content-block h2 {
        font-size: 28px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .value-item {
        padding: 24px;
    }
    
    .empty-content {
        padding: 40px 20px;
    }
    
    .content-with-visual {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-with-visual.reverse .content-text,
    .content-with-visual.reverse .content-visual {
        order: unset;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .approach-item {
        padding: 30px 20px;
    }
}