/* Pages CSS - Styles for auxiliary pages */

/* Reset and Base Styles for Pages */
.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-content {
    flex: 1;
    padding: 2rem 0;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a237e 0%, #00695c 100%);
    color: white;
    padding: 3rem 0;
}

.page-header .container {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.page-logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-logo {
    width: 40px;
    height: 40px;
}

.page-brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    text-decoration: none;
}

.page-brand-name:hover {
    color: #ff7043;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    margin-left: auto;
}

/* Page Content Areas */
.page-section {
    padding: 3rem 0;
}

.page-section h2 {
    color: #1a237e;
    margin-bottom: 1.5rem;
}

.page-section h3 {
    color: #00695c;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-block {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.content-block:last-child {
    margin-bottom: 0;
}

/* About Us Specific Styles */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.about-block {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #00695c;
}

.about-block h3 {
    color: #1a237e;
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Policy Pages - Empty Content Placeholder */
.policy-content {
    background: #f8f9fa;
    padding: 4rem 2rem;
    border-radius: 12px;
    text-align: center;
    color: #666;
    border: 2px dashed #ddd;
    margin: 2rem 0;
}

.policy-content p {
    font-size: 1.125rem;
    margin: 0;
}

/* Page Footer */
.page-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem 0;
    margin-top: auto;
}

.page-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.page-footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.page-footer-logo {
    width: 28px;
    height: 28px;
}

.page-footer-brand-name {
    font-size: 1.125rem;
    font-weight: 500;
    text-decoration: none;
    color: white;
}

.page-footer-brand-name:hover {
    color: #ff7043;
}

.page-footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.page-footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-footer-links a:hover {
    color: #ff7043;
}

.page-footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 2rem;
    text-align: center;
    color: #999;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .page-title {
        margin-left: 0;
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .page-footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .page-footer-links {
        justify-content: center;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .page-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 0;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-brand-name {
        font-size: 1.25rem;
    }
    
    .about-block {
        padding: 1.5rem;
    }
    
    .container {
        padding: 0 15px;
    }
}