/* Auxiliary Pages Styles */

/* Page Header */
.page-header {
    background-color: #f8f8f8;
    padding: 60px 0 40px;
    border-bottom: 1px solid #e0e0e0;
}

.page-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    letter-spacing: 0.1em;
}

/* Main Content */
.main-content {
    padding: 60px 0;
    background-color: #fff;
    min-height: 400px;
}

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

.content-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    border-bottom: 2px solid #d32f2f;
    padding-bottom: 10px;
}

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

/* Content Placeholder for empty pages */
.content-placeholder {
    text-align: center;
    padding: 80px 20px;
    max-width: 600px;
    margin: 0 auto;
}

.content-placeholder p {
    font-size: 18px;
    color: #888;
    line-height: 1.6;
}

/* Content with Image Layout */
.content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.content-with-image.reverse {
    grid-template-columns: 1fr 2fr;
}

.content-with-image .text-content {
    text-align: left;
}

.content-with-image .image-placeholder {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
}

.about-content-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content with SVG Layout */
.content-with-svg {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.content-with-svg .text-content {
    text-align: left;
}

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

/* Header modifications for auxiliary pages */
.header .brand-name a {
    color: #1a1a1a;
    text-decoration: none;
}

.header .brand-name a:hover {
    color: #d32f2f;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.footer-brand p {
    color: #ccc;
    font-size: 14px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

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

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.copyright {
    color: #999;
    font-size: 12px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }
    
    .content-block {
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .content-block h3 {
        font-size: 20px;
    }
    
    .content-block p {
        font-size: 15px;
    }
    
    .main-content {
        padding: 40px 0;
    }
    
    .page-header {
        padding: 40px 0 30px;
    }
    
    .content-placeholder {
        padding: 60px 20px;
    }
    
    .content-placeholder p {
        font-size: 16px;
    }
    
    .content-with-image,
    .content-with-image.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-with-svg {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-with-image .image-placeholder {
        height: 150px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}