/* Auxiliary Pages Styles */
/* Import base styles from main stylesheet */
@import url('style.css');

/* Override main page specific styles for auxiliary pages */

/* Main Content Layout */
.main-content {
    min-height: 60vh;
    padding: 2rem 0 4rem;
}

/* Page Header */
.page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem 0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D2D2D;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
}

/* Content Blocks */
.content-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: left;
}

.content-block h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 1.5rem;
}

.content-block p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.content-with-image.reverse {
    direction: rtl;
}

.content-with-image.reverse > * {
    direction: ltr;
}

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

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.approach-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.approach-icon {
    margin: 0 auto 1.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D2D2D;
    margin-bottom: 1rem;
}

.approach-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Feature List */
.feature-list {
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #555;
}

.feature-bullet {
    color: #7A8471;
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.2rem;
    line-height: 1.5;
}

/* Legal Content */
.legal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2D2D2D;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid #F0F2F0;
    padding-bottom: 0.5rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-content a {
    color: #7A8471;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.placeholder-text {
    font-style: italic;
    color: #888;
    text-align: center;
    padding: 3rem;
    background: #F8F7F5;
    border-radius: 8px;
    border: 2px dashed #DDD;
}

/* Brand Name Links */
.brand-name a {
    color: inherit;
    text-decoration: none;
}

.brand-name a:hover {
    color: #7A8471;
}

.footer .brand-name a {
    color: white;
}

.footer .brand-name a:hover {
    color: #CCCCCC;
}

/* Responsive Design for Auxiliary Pages */
@media (max-width: 768px) {
    .content-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-with-image.reverse {
        direction: ltr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-block h2 {
        font-size: 1.75rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .main-content {
        padding: 1rem 0 3rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.75rem;
    }
    
    .content-block h2 {
        font-size: 1.5rem;
    }
    
    .legal-content {
        padding: 1rem;
    }
    
    .placeholder-text {
        padding: 2rem;
        font-size: 0.95rem;
    }
}