/* Auxiliary Pages Specific Styles */

.auxiliary-main {
    min-height: 70vh;
    padding: 60px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
    position: relative;
}

.page-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #f59e0b);
    display: block;
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* About Us Page Enhanced Styles */
.about-hero {
    margin-bottom: 3rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    color: #4f46e5;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.about-text p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.about-expertise {
    margin-bottom: 3rem;
    padding: 3rem 0;
    background: #f8fafc;
}

.expertise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.expertise-visual {
    display: flex;
    justify-content: center;
}

.expertise-text h2 {
    color: #4f46e5;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.expertise-text p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-technology {
    margin-bottom: 3rem;
}

.technology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.technology-text h2 {
    color: #4f46e5;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.technology-text p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.about-text p:last-child,
.expertise-text p:last-child,
.technology-text p:last-child {
    margin-bottom: 0;
}

/* Legal Pages Styles */
.legal-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.placeholder-text {
    color: #6b7280;
    font-size: 1.125rem;
    text-align: center;
    font-style: italic;
    margin: 0;
}

/* Legal Content Structure (for when content is added) */
.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    color: #4f46e5;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section h3 {
    color: #1f2937;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-section p {
    color: #4b5563;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-section li {
    color: #4b5563;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.legal-section a {
    color: #4f46e5;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Responsive adjustments for auxiliary pages */
@media (max-width: 768px) {
    .auxiliary-main {
        padding: 40px 0;
    }
    
    .about-content,
    .expertise-content,
    .technology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img,
    .technology-image img {
        height: 250px;
    }
    
    .legal-content {
        padding: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-text h2,
    .expertise-text h2,
    .technology-text h2 {
        font-size: 1.5rem;
    }
    
    .expertise-visual svg {
        width: 250px;
        height: 150px;
    }
}