/* 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.6;
    color: #2D3748;
    background-color: #F7FAFC;
}

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

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1A202C;
}

h2 {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1A202C;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: #2D3748;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    color: #2D3748;
}

p {
    font-size: 1.1rem;
    color: #4A5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Header */
.header {
    background: rgba(247, 250, 252, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    border-bottom: 1px solid #E2E8F0;
}

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

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

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

.brand-name {
    font-size: 2rem;
    font-weight: 600;
    color: #2D3748;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.brand-name:hover {
    color: #4299E1;
}

/* Page Hero */
.page-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #F7FAFC 0%, #EDF2F7 100%);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.25rem;
    color: #4A5568;
    margin-bottom: 0;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
    background: white;
}

.content-section.alt-bg {
    background: #F7FAFC;
}

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

.content-block h2 {
    text-align: left;
    margin-bottom: 2rem;
}

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

/* Content Grid for About Page */
.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.content-grid.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-grid.reverse .content-image {
    order: -1;
}

.content-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

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

.content-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Legal Placeholder */
.legal-placeholder {
    background: #EDF2F7;
    padding: 3rem;
    border-radius: 12px;
    border: 2px dashed #CBD5E0;
    text-align: center;
}

.legal-placeholder p {
    color: #718096;
    font-style: italic;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #1A202C;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    margin-bottom: 3rem;
}

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

.footer-brand .logo-group {
    margin-bottom: 1rem;
}

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

.footer-brand p {
    color: #A0AEC0;
    margin-top: 1rem;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

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

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

.footer-column a {
    color: #A0AEC0;
    text-decoration: none;
}

.footer-column a:hover {
    color: #4299E1;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #2D3748;
    text-align: center;
}

.footer-bottom p {
    color: #A0AEC0;
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .header {
        padding: 1rem 0;
    }
    
    .brand-name {
        font-size: 1.5rem;
    }
    
    .page-hero {
        padding: 6rem 0 3rem;
    }
    
    .content-section {
        padding: 3rem 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 2rem;
    }
    
    .legal-placeholder {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1.1rem;
    }
    
    .legal-placeholder {
        padding: 1.5rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-grid.reverse .content-image {
        order: 0;
    }
    
    .content-text h2 {
        text-align: center;
    }
}