/* Additional styles for auxiliary pages */

.page-main {
    min-height: 60vh;
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
    background-color: var(--white);
    border-radius: 12px;
    margin-top: 20px;
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.page-section {
    margin-bottom: 60px;
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 10px;
}

.page-section h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.page-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* About page specific styles */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.content-item {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
}

.content-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.content-item p {
    color: #666;
    margin-bottom: 0;
}

.company-info {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.info-row {
    display: flex;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    color: var(--primary-color);
    min-width: 100px;
    flex-shrink: 0;
}

.info-value {
    color: #666;
    margin-left: 20px;
}

/* Empty content placeholder for policy pages */
.empty-content {
    text-align: center;
    padding: 80px 40px;
    background-color: var(--bg-color);
    border-radius: 8px;
    border: 2px dashed var(--border-color);
}

.empty-content p {
    font-size: 1.1rem;
    color: #999;
    margin: 0;
}

/* Contact info for policy pages */
.contact-info-simple {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.contact-info-simple p {
    margin-bottom: 8px;
}

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

/* Enhanced About page styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.about-hero-content h2 {
    margin-bottom: 20px;
}

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

.services-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.services-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tech-illustration {
    text-align: center;
    margin-top: 30px;
}

.tech-illustration svg {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
    text-align: center;
}

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

.value-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-color);
    border-radius: 12px;
}

.value-icon {
    margin-bottom: 20px;
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item p {
    color: #666;
    margin-bottom: 0;
}

/* Header logo link styles */
.logo-section a {
    text-decoration: none;
    color: inherit;
}

.logo-section a:hover {
    opacity: 0.8;
}

.brand-name a {
    text-decoration: none;
    color: var(--primary-color);
}

.brand-name a:hover {
    color: var(--accent-color);
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .page-section {
        padding: 30px 20px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero,
    .services-overview {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero-image img,
    .services-image img {
        height: 200px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .company-info {
        padding: 20px;
    }
    
    .info-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .info-label {
        min-width: auto;
    }
    
    .info-value {
        margin-left: 0;
    }
}