/* Auxiliary Pages Styles */

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-header {
    background: linear-gradient(135deg, #2D3748 0%, #1A202C 100%);
    color: #F7FAFC;
    padding: 80px 0 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.page-subtitle {
    font-size: 18px;
    color: #E2E8F0;
    font-weight: 400;
}

.content-section {
    padding: 80px 0;
}

.content-section.alt-bg {
    background-color: #F7FAFC;
}

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

.content-block p {
    font-size: 18px;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 24px;
}

.content-block h3 {
    color: #DC2626;
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 22px;
}

.company-info {
    max-width: 800px;
    margin: 0 auto;
}

.info-grid {
    display: grid;
    gap: 24px;
}

.info-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid #E2E8F0;
}

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

.info-item strong {
    color: #2D3748;
    font-weight: 600;
}

.info-item span {
    color: #4A5568;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    min-height: 200px;
}

.policy-intro {
    font-size: 18px;
    color: #4A5568;
    text-align: center;
    padding: 40px 0;
    background-color: #F7FAFC;
    border-radius: 8px;
    border: 2px dashed #CBD5E0;
}

.policy-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E2E8F0;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h2 {
    color: #DC2626;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
}

.policy-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4A5568;
    margin-bottom: 16px;
}

.contact-details {
    background-color: #F7FAFC;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

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

.policy-date {
    font-weight: 600;
    color: #2D3748;
    text-align: center;
}

/* About Page Enhancements */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.about-content.reverse {
    grid-template-columns: 1fr 2fr;
}

.about-content.reverse .about-text {
    order: 2;
}

.about-content.reverse .about-image {
    order: 1;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.9;
    color: #4A5568;
    margin-bottom: 24px;
}

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

.about-image, .placeholder-image {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    height: auto;
    min-height: 200px;
    object-fit: cover;
}

.placeholder-image {
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.philosophy-content {
    text-align: center;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.philosophy-item {
    background-color: #FFFFFF;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #E2E8F0;
    text-align: center;
}

.philosophy-icon {
    margin-bottom: 24px;
}

.philosophy-item h3 {
    color: #2D3748;
    margin-bottom: 16px;
    font-size: 20px;
}

.philosophy-item p {
    color: #4A5568;
    line-height: 1.7;
    font-size: 16px;
}

.process-content {
    text-align: center;
}

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

.process-step {
    background-color: #FFFFFF;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #E2E8F0;
    text-align: center;
}

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

.process-step h3 {
    color: #2D3748;
    margin-bottom: 16px;
    font-size: 18px;
}

.process-step p {
    color: #4A5568;
    line-height: 1.7;
    font-size: 14px;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }
    
    .info-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .about-content,
    .about-content.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content.reverse .about-text,
    .about-content.reverse .about-image {
        order: unset;
    }
    
    .philosophy-grid,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0 40px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .content-section {
        padding: 40px 0;
    }
}