/* Auxiliary Pages Styles */

.page-content {
    min-height: calc(100vh - 200px);
    padding: 4rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-header p {
    color: #4A5568;
    font-size: 1.125rem;
}

.content-block {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.content-block h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.content-block p {
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.placeholder-content {
    background: var(--light-gray);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    color: #718096;
    font-style: italic;
    border: 2px dashed var(--border-color);
}

.placeholder-content p {
    margin-bottom: 0;
    color: #718096;
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-feature {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.feature-illustration {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.about-feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-feature p {
    color: #4A5568;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-image img {
        height: 250px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-feature {
        padding: 1.5rem;
    }
}

/* About Page Specific Styles */
.content-block ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.content-block li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 2rem;
}

.content-block li:before {
    content: "▸";
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.content-block li:last-child {
    border-bottom: none;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .placeholder-content {
        padding: 2rem 1rem;
    }
}