/* Auxiliary Pages Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #faf0e6;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

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

/* Header */
.header {
    background: rgba(250, 240, 230, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(13, 115, 119, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d7377;
    background: linear-gradient(135deg, #0d7377, #f4a261);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-name a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #0d7377;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: #f4a261;
    border-bottom-color: #f4a261;
}

/* Main Content */
.main-content {
    min-height: 70vh;
    padding: 4rem 0;
    text-align: center;
}

.page-header {
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, rgba(13, 115, 119, 0.05), rgba(244, 162, 97, 0.05));
    border-radius: 16px;
}

.page-title {
    font-size: 2.5rem;
    color: #0d7377;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0d7377, #f4a261);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
}

.last-updated {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Content Blocks */
.content-block {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(13, 115, 119, 0.1);
    border-left: 4px solid #f4a261;
}

.content-block h2 {
    color: #0d7377;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.content-block p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

.content-block:last-of-type {
    margin-bottom: 0;
}

/* About Us Specific Styles */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(13, 115, 119, 0.1);
    border: 1px solid rgba(13, 115, 119, 0.1);
}

.about-card .icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: rgba(244, 162, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card h3 {
    color: #0d7377;
    margin-bottom: 1rem;
}

/* Image and SVG Styles */
.image-placeholder {
    margin: 2rem 0;
}

.svg-illustration {
    margin: 2rem 0;
    display: flex;
    justify-content: center;
}

/* Empty Content Placeholder */
.empty-content {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #dee2e6;
    border-radius: 12px;
    padding: 4rem 2rem;
    text-align: center;
    color: #6c757d;
    margin: 2rem 0;
}

.empty-content h3 {
    color: #495057;
    margin-bottom: 1rem;
}

.empty-content p {
    font-style: italic;
    color: #6c757d;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #f4a261;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #f4a261;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .content-block {
        padding: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .empty-content {
        padding: 2rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Back to Home Link */
.back-to-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0d7377;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(13, 115, 119, 0.05);
}

.back-to-home:hover {
    background: rgba(13, 115, 119, 0.1);
    transform: translateX(-4px);
}

.back-to-home::before {
    content: '←';
    font-size: 1.2rem;
}