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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #f8f6f3;
}

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

/* Header */
.header {
    padding: 20px 0;
    background-color: #f8f6f3;
    border-bottom: 1px solid #e5e5e5;
}

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

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

.logo-svg {
    width: 50px;
    height: 50px;
}

.brand-name {
    font-size: 24px;
    font-weight: 300;
    color: #2a2a2a;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
    color: #7a9cc6;
}

/* Main Content */
.main-content {
    min-height: 60vh;
    padding: 60px 0;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 300;
    color: #2a2a2a;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Blocks */
.content-block {
    max-width: 800px;
    margin: 0 auto 50px auto;
    padding: 0 20px;
}

.content-block h2 {
    font-size: 28px;
    font-weight: 400;
    color: #2a2a2a;
    margin-bottom: 25px;
    letter-spacing: -0.3px;
}

.content-block p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

/* Empty Content Placeholder */
.empty-content {
    background-color: #fff;
    border-radius: 6px;
    padding: 40px 30px;
}

.empty-content h2 {
    color: #2a2a2a;
    font-style: normal;
}

.empty-content p {
    color: #666;
    font-style: normal;
}

/* Content Images and Visuals */
.content-image {
    margin: 30px 0;
    text-align: center;
}

.content-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.content-visual {
    margin: 30px 0;
    text-align: center;
}

.content-visual svg {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    border: 1px solid #e5e5e5;
}

/* Footer */
.footer {
    background-color: #2a2a2a;
    color: #f8f6f3;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

.footer-left {
    flex: 1;
}

.footer-right {
    flex: 1;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 500;
    color: #f8f6f3;
    margin-bottom: 15px;
}

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

.logo-svg-small {
    width: 40px;
    height: 40px;
}

.footer-brand {
    font-size: 20px;
    font-weight: 300;
    color: #f8f6f3;
}

.footer-description {
    color: #aaa;
    line-height: 1.6;
    max-width: 400px;
}

.footer-column a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #7a9cc6;
}

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

.footer-bottom p {
    color: #888;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    .content-block {
        padding: 0 15px;
    }

    .content-block h2 {
        font-size: 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        justify-content: center;
        text-align: center;
    }
}