/* Auxiliary Pages Styles */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: #4A5568;
    background-color: #FFFFFF;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #E2E8F0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-svg {
    flex-shrink: 0;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #4A5568;
    margin: 0;
}

.nav-link {
    color: #718096;
    text-decoration: none;
    font-size: 16px;
    margin-left: 32px;
}

.nav-link:hover {
    color: #4A5568;
}

/* Main Content */
.main-content {
    padding: 80px 0 120px;
    min-height: 60vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: #4A5568;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    margin-bottom: 60px;
    text-align: center;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 600;
    color: #4A5568;
    margin-bottom: 24px;
}

.content-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: #4A5568;
    margin-bottom: 16px;
    margin-top: 32px;
}

.content-section p {
    font-size: 16px;
    color: #718096;
    margin-bottom: 16px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 16px;
}

.content-section ul {
    margin-bottom: 24px;
    padding-left: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.content-section li {
    color: #718096;
    margin-bottom: 8px;
    line-height: 1.6;
}

/* About Page Specific */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
    text-align: center;
}

.about-card {
    background: #F7FAFC;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    text-align: center;
}

.card-icon,
.card-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
}

.about-card h3 {
    color: #4A5568;
    margin-top: 0;
    margin-bottom: 16px;
}

.about-card p {
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

/* About Image Sections */
.about-image-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 60px 0;
}

.about-image-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.about-image-section.reverse .about-text {
    order: 2;
}

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

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

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

.about-text p {
    text-align: left;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

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

/* Footer */
.footer {
    background: #4A5568;
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 600;
}

.footer-description {
    color: #CBD5E0;
    line-height: 1.6;
    max-width: 300px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.footer-column a {
    display: block;
    color: #CBD5E0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

/* Policy Pages */
.policy-content {
    background: #F7FAFC;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    text-align: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.policy-placeholder {
    color: #718096;
    font-size: 18px;
    font-style: italic;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #718096;
}

.footer-bottom p {
    color: #CBD5E0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-image-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image-section.reverse .about-text,
    .about-image-section.reverse .about-image {
        order: unset;
    }
    
    .about-text {
        text-align: center;
    }
    
    .about-text h2 {
        text-align: center;
    }
    
    .about-text p {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .policy-content {
        padding: 24px;
        min-height: 200px;
    }
}