/* Additional styles for auxiliary pages */

.back-link {
    color: #C41E3A;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid #C41E3A;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #C41E3A;
    color: white;
}

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

.page-main {
    min-height: 60vh;
    padding: 60px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #C41E3A;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.1rem;
    color: #5D4037;
    line-height: 1.6;
}

.content-block {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #FFD700;
}

.content-block h2 {
    font-size: 1.5rem;
    color: #C41E3A;
    margin-bottom: 20px;
    font-weight: 600;
}

.content-block p {
    color: #5D4037;
    line-height: 1.8;
    font-size: 1rem;
}

.content-placeholder {
    background-color: #F5F5DC;
    border: 2px dashed #C41E3A;
    padding: 100px 40px;
    border-radius: 8px;
    text-align: center;
    color: #8B0000;
    font-style: italic;
    font-size: 1.1rem;
}

/* About page specific styles */
.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text-centered {
    margin-top: 30px;
}

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

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

.about-illustration-large {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

/* Responsive design for pages */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 30px 20px;
    }
    
    .content-placeholder {
        padding: 60px 20px;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-illustration svg {
        width: 250px;
        height: auto;
    }
    
    .about-illustration-large svg {
        width: 300px;
        height: auto;
    }
}