/* Auxiliary Pages Styles */
.main-content {
    min-height: calc(100vh - 400px);
    padding: 6rem 0;
    background-color: #fefefe;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f1f5f9;
}

.page-header h1 {
    font-size: 3rem;
    color: #1e40af;
    margin-bottom: 1rem;
}

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

.content-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.content-section h2 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 1.5rem;
    text-align: left;
    border-left: 4px solid #f97316;
    padding-left: 1rem;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.contact-info {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #f97316;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #1e40af;
    font-weight: 500;
}

.contact-info a:hover {
    color: #f97316;
}

/* Header link styling for auxiliary pages */
.brand-name a {
    color: inherit;
    text-decoration: none;
}

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

/* Footer consistency */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-services,
.footer-company {
    display: flex;
    flex-direction: column;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact .contact-item {
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-section p a {
    color: #cbd5e1;
    font-weight: 500;
}

.footer-section p a:hover {
    color: #f97316;
}

.brand-name-footer h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.brand-name-footer p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid #3b82f6;
    padding-top: 2rem;
    text-align: center;
    color: #cbd5e1;
    font-size: 0.9rem;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand,
    .footer-services,
    .footer-company,
    .footer-contact {
        text-align: center;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header p {
        font-size: 1rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section p {
        font-size: 1rem;
        text-align: left;
    }
    
    .main-content {
        padding: 4rem 0;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
}

/* About page specific styles */
.safety-commitment {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.safety-icons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.safety-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.safety-item svg {
    color: #f97316;
    margin-bottom: 0.5rem;
}

.safety-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #1e40af;
}

.safety-item p {
    font-size: 0.9rem;
    margin: 0;
    color: #666;
}

.environmental-commitment,
.community-engagement {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.env-illustration,
.community-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive adjustments for about page */
@media (max-width: 768px) {
    .safety-commitment,
    .environmental-commitment,
    .community-engagement {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .safety-icons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .safety-item {
        flex: 1;
        min-width: 120px;
    }
}