/* Auxiliary Pages Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', system-ui, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: linear-gradient(135deg, #4F46E5 0%, #DC2626 100%);
    color: white;
    padding: 20px 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: white;
    text-decoration: none;
}

.brand-name:hover {
    opacity: 0.9;
}

/* Main Content */
.main {
    min-height: calc(100vh - 200px);
}

.page-hero {
    background-color: #f8fafc;
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #4F46E5;
    margin-bottom: 20px;
    font-weight: 300;
}

.page-hero p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 60px 0;
    background-color: white;
}

.content-block {
    max-width: 900px;
    margin: 0 auto 50px;
}

.content-block h2 {
    color: #DC2626;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 500;
}

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

.placeholder-text {
    color: #9ca3af;
    font-style: italic;
    padding: 40px;
    background-color: #f8fafc;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed #e5e7eb;
}

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

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

.content-image-large {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    text-align: center;
    padding: 20px;
}

.value-icon {
    margin-bottom: 15px;
}

.value-item h3 {
    color: #DC2626;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.value-item p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: white;
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section:first-child {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo span {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.footer-section h4 {
    color: #DC2626;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-section p {
    color: #9ca3af;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .logo-section {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section:first-child {
        min-width: auto;
    }
    
    .footer-section {
        min-width: auto;
    }
    
    .content-with-image,
    .content-with-image.reverse {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}