/* Additional styles for auxiliary pages */

.page-header {
    background: #FAFAFA;
    padding: 20px 0;
    border-bottom: 2px solid #7CB342;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-nav a {
    color: #2C2C2C;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.page-nav a:hover {
    background: #FF6B35;
    color: white;
}

.brand-name a {
    color: #2C2C2C;
    text-decoration: none;
}

.brand-name a:hover {
    color: #FF6B35;
}

.page-main {
    min-height: calc(100vh - 200px);
    padding: 60px 0;
}

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

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2C2C2C;
    margin-bottom: 40px;
    border-bottom: 3px solid #FF6B35;
    padding-bottom: 20px;
}

.content-block {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    border-left: 4px solid #7CB342;
}

.content-block h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2C2C2C;
    margin-bottom: 20px;
    color: #FF6B35;
}

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

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

.placeholder-text {
    color: #888;
    font-style: italic;
    background: #F8F8F8;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed #DDD;
}

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

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
}

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

.mission-content {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.mission-icon {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.expertise-item {
    text-align: center;
    padding: 20px;
}

.expertise-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.expertise-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2C2C2C;
}

.expertise-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Responsive design for pages */
@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 30px 20px;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .content-block p {
        font-size: 1rem;
    }
    
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-content {
        flex-direction: column;
        text-align: center;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-main {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .content-block {
        padding: 20px 15px;
    }
    
    .mission-icon {
        width: 80px;
        height: 80px;
    }
}