/* Additional styles for auxiliary pages */

.logo-link {
    text-decoration: none;
    color: inherit;
}

/* Page Layout */
.page-main {
    min-height: 70vh;
    padding: 60px 0;
}

/* Page Hero */
.page-hero {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafb 0%, #e8f0f5 100%);
    margin-bottom: 60px;
    border-radius: 0 0 20px 20px;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #2C5F7A;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Blocks */
.content-block {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-block h3 {
    font-size: 28px;
    font-weight: 600;
    color: #2C5F7A;
    margin-bottom: 25px;
    border-bottom: 2px solid #e0e7ea;
    padding-bottom: 10px;
}

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

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

/* Empty Content Placeholder */
.empty-content {
    background: #f8fafb;
    border: 2px dashed #c8d5da;
    border-radius: 12px;
    padding: 60px 40px;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* About Page Specific Styles */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.about-content-grid.reverse {
    direction: rtl;
}

.about-content-grid.reverse > * {
    direction: ltr;
}

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

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-image {
    width: 100%;
    max-width: 400px;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(44, 95, 122, 0.15);
}

/* Responsive Design for Pages */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
        margin-bottom: 40px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .content-block {
        margin-bottom: 40px;
        padding: 0 20px;
    }
    
    .content-block h3 {
        font-size: 24px;
    }
    
    .empty-content {
        padding: 40px 30px;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-content-grid.reverse {
        direction: ltr;
    }
    
    .about-text {
        text-align: center;
    }
    
    .content-image {
        max-width: 300px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 40px 0;
        margin-bottom: 30px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .page-subtitle {
        font-size: 15px;
    }
    
    .content-block {
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .content-block h3 {
        font-size: 22px;
    }
    
    .empty-content {
        padding: 30px 20px;
    }
    
    .about-content-grid {
        gap: 30px;
    }
    
    .content-image {
        max-width: 250px;
        height: 180px;
    }
}