/* Auxiliary Pages CSS */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    color: #1f2937;
    background-color: #ffffff;
}

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

/* Color System */
:root {
    --primary-color: #0D9488;
    --secondary-color: #FF6B6B;
    --accent-teal: #14B8A6;
    --accent-coral: #FF7F7F;
    --neutral-dark: #111827;
    --neutral-medium: #4b5563;
    --neutral-light: #f9fafb;
    --neutral-border: #e5e7eb;
    --white: #ffffff;
}

/* Typography */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 600;
    color: #111827;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1.125rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Logo and Brand */
.logo-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-dark);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-teal));
    color: var(--white);
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.25);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--neutral-border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-medium);
    font-weight: 500;
    font-size: 0.875rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f0fdfa 0%, #fff7ed 100%);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 20px;
    color: var(--neutral-dark);
}

.page-hero p {
    font-size: 1.25rem;
    color: var(--neutral-medium);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.alt {
    background: linear-gradient(135deg, #f0f9ff 0%, #fef2f2 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

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

.content-block {
    max-width: 100%;
}

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

.placeholder-image {
    background: linear-gradient(135deg, var(--neutral-light), #e5e7eb);
    border: 2px dashed var(--neutral-border);
    border-radius: 12px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-medium);
    font-weight: 500;
}

/* About Page Specific Styles */
.about-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.about-visual svg {
    max-width: 100%;
    height: auto;
}

/* Policy Content */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

.policy-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.policy-content ul, 
.policy-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: var(--neutral-dark);
    color: var(--white);
    padding: 60px 0 20px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: #9ca3af;
    margin-top: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
}

.link-group h4 {
    color: var(--white);
    margin-bottom: 16px;
    font-size: 1rem;
}

.link-group ul {
    list-style: none;
}

.link-group ul li {
    margin-bottom: 12px;
}

.link-group ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
}

.link-group ul li a:hover {
    color: var(--white);
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.875rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav {
        gap: 16px;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    .content-section {
        padding: 60px 0;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .placeholder-image {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .nav {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
}