/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background-color: #1e293b;
    padding: 24px 0;
    border-bottom: 1px solid #334155;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-header .logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-header .logo {
    height: 32px;
    width: auto;
}

.page-header .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.back-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.back-link:hover {
    background-color: rgba(16, 185, 129, 0.1);
}

/* Main Content */
.page-main {
    min-height: calc(100vh - 200px);
    padding: 64px 0;
    background-color: #ffffff;
}

/* Page Title Section */
.page-title-section {
    text-align: center;
    margin-bottom: 64px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e2e8f0;
}

.page-title-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    margin: 0;
}

/* Content Sections */
.content-section {
    margin-bottom: 48px;
    padding-bottom: 32px;
}

.content-section:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.content-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    padding-bottom: 8px;
    border-bottom: 2px solid #10b981;
    display: inline-block;
}

.content-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 16px;
    margin-top: 32px;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 16px;
}

.content-section ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.content-section li {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 8px;
}

.content-section li strong {
    color: #1e293b;
    font-weight: 600;
}

/* Feature List (About Page) */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.feature-item {
    padding: 24px;
    background-color: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.feature-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    margin-top: 0;
}

.feature-item p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* Approach List (About Page) */
.approach-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
}

.approach-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
}

.approach-list li:last-child {
    border-bottom: none;
}

/* Benefits Grid (About Page) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.benefit-card {
    padding: 24px;
    background-color: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card:hover {
    border-color: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    margin-top: 0;
}

.benefit-card p {
    font-size: 1rem;
    color: #64748b;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: #f8fafc;
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    border: none;
}

.cta-section h2 {
    border: none;
    display: block;
    padding-bottom: 0;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* Contact Info */
.contact-info {
    background-color: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin-top: 24px;
}

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

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

.contact-info a {
    color: #10b981;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
}

.footer-links h4 {
    color: white;
    margin-bottom: 16px;
    font-size: 1.125rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #10b981;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 1024px) {
    .page-title-section h1 {
        font-size: 2.5rem;
    }
    
    .content-section h2 {
        font-size: 1.75rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-main {
        padding: 48px 0;
    }
    
    .page-title-section {
        margin-bottom: 48px;
    }
    
    .page-title-section h1 {
        font-size: 2rem;
    }
    
    .content-section {
        margin-bottom: 40px;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .content-section h3 {
        font-size: 1.25rem;
    }
    
    .content-section p,
    .content-section li {
        font-size: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 32px 24px;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .page-title-section h1 {
        font-size: 1.75rem;
    }
    
    .content-section h2 {
        font-size: 1.375rem;
    }
    
    .feature-item,
    .benefit-card {
        padding: 20px;
    }
    
    .cta-section {
        padding: 24px 16px;
    }
}