/* Additional styles for auxiliary pages */

/* About page specific styles */
.about-section {
    margin-bottom: 80px;
    text-align: center;
}

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

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

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

.about-text {
    text-align: left;
}

.about-image {
    text-align: center;
}

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

.value-item {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    text-align: center;
}

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

.value-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 16px;
    color: #4A5568;
    text-align: left;
}

/* Policy pages styles */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.policy-intro {
    background: #F8FAFC;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid #4338CA;
}

.policy-date {
    font-size: 14px;
    color: #6B7280;
    margin-top: 16px;
    font-style: italic;
}

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

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

.policy-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #EC93A7;
}

.policy-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2D3748;
    margin: 24px 0 12px 0;
}

.policy-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.policy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.contact-info {
    background: #F8FAFC;
    padding: 24px;
    border-radius: 8px;
    margin-top: 16px;
}

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

.contact-info strong {
    color: #2D3748;
}

.page-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    color: #4338CA;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.nav-link:hover {
    background-color: #F3F4F6;
}

.page-main {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 40px 0;
    background: linear-gradient(135deg, #4338CA 0%, #EC93A7 100%);
    color: white;
    border-radius: 16px;
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

.page-section {
    margin-bottom: 48px;
}

.page-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #EC93A7;
}

.large-text {
    font-size: 20px;
    color: #2D3748;
    margin-bottom: 24px;
    font-weight: 500;
}

.service-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.service-overview-item {
    background: #F8FAFC;
    padding: 32px 24px;
    border-radius: 12px;
    border-left: 4px solid #4338CA;
}

.service-overview-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 16px;
}

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

.company-info {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

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

.info-list dt {
    font-size: 18px;
    font-weight: 700;
    color: #2D3748;
    margin-bottom: 8px;
}

.info-list dd {
    font-size: 16px;
    color: #4A5568;
    line-height: 1.7;
    padding-bottom: 24px;
    border-bottom: 1px solid #E2E8F0;
}

.info-list dd:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Content placeholder styles */
.content-area {
    padding: 60px 0;
}

.content-placeholder {
    text-align: center;
    padding: 80px 40px;
    background: #F8FAFC;
    border-radius: 16px;
    border: 2px dashed #CBD5E0;
}

.content-placeholder p {
    font-size: 20px;
    color: #4A5568;
    margin-bottom: 32px;
    line-height: 1.6;
}

.placeholder-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #4338CA;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.placeholder-link:hover {
    background-color: #3730A3;
}

/* Responsive adjustments for pages */
@media (max-width: 768px) {
    .page-header {
        padding: 32px 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .page-section h2 {
        font-size: 24px;
    }

    .large-text {
        font-size: 18px;
    }

    .content-placeholder {
        padding: 60px 20px;
    }

    .content-placeholder p {
        font-size: 18px;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content-grid.reverse .about-text,
    .about-content-grid.reverse .about-image {
        order: unset;
    }

    .about-text {
        text-align: center;
    }

    .value-item p {
        text-align: center;
    }

    .company-info {
        padding: 24px;
    }

    .info-list dt {
        font-size: 16px;
    }

    .info-list dd {
        font-size: 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .page-nav {
        justify-content: center;
    }
}