/* Auxiliary Pages Styles */

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, #FFF8DC 0%, #F8F5F0 100%);
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 2.5rem;
    color: #4F46E5;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #5A5A5A;
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0;
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
}

.content-section.alt-bg {
    background: linear-gradient(135deg, #F8F5F0 0%, #FFF8DC 100%);
}

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

.content-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.content-image .image-placeholder {
    background-color: #f0f0f0;
    border: 2px dashed #ccc;
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    color: #666;
    font-size: 1rem;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Story Content */
.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.approach-card {
    text-align: center;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.1);
    border: 2px solid #f0f0f0;
}

.approach-card:hover {
    border-color: #4F46E5;
    transform: translateY(-4px);
    transition: all 0.3s ease;
}

.approach-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.approach-card h3 {
    color: #4F46E5;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Commitment Content */
.commitment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #4F46E5;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

/* CTA Content */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #FFF8DC;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.1);
}

.cta-content h2 {
    color: #4F46E5;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Legal Content */
.legal-content {
    padding: 2rem 0 4rem 0;
}

.legal-section {
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.legal-section h2 {
    color: #4F46E5;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #4F46E5;
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: #4F46E5;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: #FFF8DC;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: #4F46E5;
    font-weight: 600;
}

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

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    font-size: 1rem;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Logo Link Styling */
.logo-section a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.logo-section a:hover {
    text-decoration: none;
}

.logo-section a:hover .brand-name {
    color: #3730A3;
}

/* Image Styling */
.rounded-image {
    border-radius: 12px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.approach-hero-image {
    max-width: 100%;
    margin-bottom: 2rem;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.story-image {
    position: sticky;
    top: 2rem;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.values-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.values-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: flex-start;
    max-width: 1000px;
    margin: 0 auto;
}

.impact-image {
    position: sticky;
    top: 2rem;
}

.impact-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.3rem;
    }
    
    .contact-info {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .story-content,
    .values-content,
    .impact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image,
    .impact-image {
        position: static;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 2rem 0;
    }
    
    .content-section {
        padding: 2rem 0;
    }
    
    .approach-card {
        padding: 1.5rem;
    }
    
    .cta-content {
        padding: 2rem 1rem;
    }
    
    .legal-section ul {
        margin-left: 1rem;
    }
}