/* Additional Styles for Auxiliary Pages */

/* About page specific styles */
.content-block {
    text-align: center;
}

.content-block .content-flex {
    text-align: left;
}

.content-block .text-content {
    text-align: left;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2D3A8C, #4A5BA6);
    color: white;
    padding: 30px 0;
}

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

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

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

.page-nav {
    display: flex;
    gap: 30px;
}

.page-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.9;
}

.page-nav a:hover {
    opacity: 1;
    color: #D4AF37;
}

/* Page Main Content */
.page-main {
    min-height: 60vh;
    padding: 80px 0;
    background: white;
}

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

.page-title h1 {
    font-size: 3rem;
    color: #2D3A8C;
    margin-bottom: 20px;
}

.page-title p {
    font-size: 1.2rem;
    color: #666;
    opacity: 0.8;
}

/* Content Blocks */
.content-block {
    margin-bottom: 80px;
}

.content-block h2 {
    font-size: 2rem;
    color: #2D3A8C;
    margin-bottom: 30px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

/* Values List */
.values-list {
    margin-top: 30px;
}

.value-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #f8f9ff;
    border-radius: 8px;
    border-left: 4px solid #D4AF37;
}

.value-item h3 {
    color: #2D3A8C;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.value-item p {
    margin: 0;
    color: #666;
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2 {
    color: #2D3A8C;
    margin-top: 40px;
    margin-bottom: 20px;
}

.policy-content h3 {
    color: #2D3A8C;
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content ul, .policy-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content li {
    margin-bottom: 8px;
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-header .logo-section {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .page-header .brand-name {
        font-size: 1.3rem;
    }
    
    .page-nav {
        gap: 20px;
    }
    
    .page-title h1 {
        font-size: 2.2rem;
    }
    
    .page-title p {
        font-size: 1rem;
    }
    
    .content-block h2 {
        font-size: 1.8rem;
    }
    
    .content-flex, .content-flex.reverse {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .page-main {
        padding: 60px 0;
    }
    
    .page-title {
        margin-bottom: 40px;
    }
    
    .page-title h1 {
        font-size: 1.8rem;
    }
    
    .content-block {
        margin-bottom: 60px;
    }
    
    .content-block h2 {
        font-size: 1.6rem;
    }
    
    .value-item {
        padding: 20px;
    }
}