/* Auxiliary Pages Styles */

.aux-main {
    padding: 80px 0 120px 0;
    min-height: calc(100vh - 200px);
}

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

.aux-title {
    font-size: 32px;
    color: #1E3A8A;
    margin-bottom: 48px;
    text-align: center;
    border-bottom: 2px solid #FF6B35;
    padding-bottom: 16px;
}

.aux-section {
    margin-bottom: 48px;
    padding: 32px;
    background-color: #F9FAFB;
    border-radius: 12px;
    border-left: 4px solid #FF6B35;
}

.aux-section h2 {
    font-size: 24px;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.aux-section p {
    color: #4B5563;
    line-height: 1.8;
    font-size: 16px;
}

.aux-empty-content {
    text-align: center;
    padding: 80px 32px;
    background-color: #F9FAFB;
    border-radius: 12px;
    border: 2px dashed #D1D5DB;
}

.aux-empty-content p {
    color: #6B7280;
    font-size: 16px;
    margin-bottom: 12px;
}

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

/* About Us specific styles */
.about-content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
    margin-bottom: 24px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-image {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.about-service-item {
    text-align: center;
    padding: 24px;
    background-color: #FEFEFE;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
}

.about-service-icon {
    margin-bottom: 16px;
}

.about-service-item h3 {
    font-size: 16px;
    color: #1E3A8A;
    margin-bottom: 8px;
}

.about-service-item p {
    color: #6B7280;
    font-size: 14px;
    margin: 0;
}

.company-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.company-info-item h4 {
    font-size: 16px;
    color: #1E3A8A;
    margin-bottom: 8px;
    border-bottom: 1px solid #FF6B35;
    padding-bottom: 4px;
}

.company-info-item p {
    color: #4B5563;
    font-size: 14px;
    margin: 0;
}

/* Header link styles for auxiliary pages */
.brand-name a {
    color: #1E3A8A;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .aux-title {
        font-size: 28px;
        margin-bottom: 32px;
    }
    
    .aux-section {
        margin-bottom: 32px;
        padding: 24px;
    }
    
    .aux-section h2 {
        font-size: 20px;
    }
    
    .aux-empty-content {
        padding: 60px 24px;
    }
    
    .about-content-with-image {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .company-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .aux-title {
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .aux-section {
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .aux-section h2 {
        font-size: 18px;
    }
    
    .aux-section p {
        font-size: 14px;
    }
    
    .aux-empty-content {
        padding: 40px 16px;
    }
    
    .aux-empty-content p {
        font-size: 14px;
    }
    
    .about-image-placeholder {
        height: 150px;
        font-size: 12px;
    }
    
    .about-image {
        height: 150px;
    }
    
    .about-service-item {
        padding: 16px;
    }
}