/* SwitchWise MoveMaster - Auxiliary Pages Styles */
:root {
    --navy: #0B1221;
    --blue: #2563EB;
    --mint: #34D399;
    --sand: #F5E6D3;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--gray-50);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--mint);
    padding-bottom: 8px;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--navy);
    margin-bottom: 12px;
    margin-top: 24px;
}

h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

ul li {
    margin-bottom: 8px;
}

/* Header */
.page-header {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

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

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

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

.brand-name {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-primary {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.brand-secondary {
    font-size: 1rem;
    font-weight: 400;
    color: var(--mint);
}

.back-link {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid var(--gray-300);
}

.back-link:hover {
    background-color: var(--gray-50);
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 64px 0;
}

.page-title {
    text-align: center;
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-title h1 {
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.125rem;
    color: var(--gray-500);
    font-style: italic;
}

.content-block {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

/* About Page Specific */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.expertise-item {
    background: var(--sand);
    padding: 24px;
    border-radius: 12px;
}

.expertise-item h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: var(--navy);
}

.expertise-item p {
    margin-bottom: 0;
    color: var(--gray-600);
}

/* Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 64px 0 32px;
    margin-top: auto;
}

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

.footer-brand {
    max-width: 400px;
}

.footer-brand .logo-container {
    margin-bottom: 24px;
}

.footer-brand .brand-primary {
    color: var(--white);
}

.footer-brand .brand-secondary {
    color: var(--mint);
}

.footer-brand p {
    color: var(--gray-300);
    margin-bottom: 0;
}

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

.footer-column h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

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

.footer-column a {
    color: var(--gray-300);
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--mint);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .content-block {
        padding: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .main-content {
        padding: 48px 0;
    }
    
    .page-title {
        margin-bottom: 48px;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    .content-block {
        padding: 32px;
        margin-bottom: 24px;
    }
    
    .page-header .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .content-block {
        padding: 24px;
    }
    
    h1 {
        font-size: 1.875rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .logo-container {
        flex-direction: column;
        gap: 8px;
    }
    
    .brand-name {
        text-align: center;
    }
    
    .page-header .container {
        gap: 20px;
    }
}