/* Auxiliary Pages Styles */
/* CSS Variables */
:root {
    --primary-black: #2A2A2A;
    --kiln-orange: #FF6B35;
    --clay-beige: #E8DCC0;
    --electric-cyan: #00BFFF;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-gray: #666666;
    --border-gray: #E0E0E0;
}

/* 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: var(--primary-black);
    background-color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

a {
    color: var(--kiln-orange);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-gray);
    padding: 1rem 0;
}

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

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-black);
    margin: 0;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 4rem 0;
    background: var(--light-gray);
}

.page-title {
    text-align: center;
    color: var(--primary-black);
    margin-bottom: 3rem;
    font-size: 3rem;
}

.content-block {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.content-block h2 {
    color: var(--primary-black);
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.content-block p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 1.1rem;
}

.content-block.centered {
    text-align: center;
}

.content-with-image {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.content-with-image.reverse {
    flex-direction: row-reverse;
}

.text-content {
    flex: 1;
    text-align: left;
}

.image-placeholder {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workflow-illustration {
    margin: 2rem 0;
}

.workflow-svg {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.creator-stats {
    margin: 2rem 0;
}

.stats-svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.content-block em {
    color: var(--text-gray);
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--white);
    padding: 3rem 0 2rem 0;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo {
    width: 32px;
    height: 32px;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--kiln-orange);
    text-decoration: none;
}

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

.footer-bottom p {
    color: var(--white);
    opacity: 0.6;
    margin-bottom: 0;
}

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

    .main-content {
        padding: 2rem 0;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .content-block {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .content-block h2 {
        font-size: 1.5rem;
    }

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

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.75rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}