/* About Page Styles */

/* Override app.css body styles to allow scrolling */
body {
    height: auto !important;
    min-height: 100vh;
    overflow: auto !important;
}

/* Sticky header */
.top-header-bar {
    position: sticky !important;
    top: 0;
    z-index: 1000;
}

/* Sticky footer */
.site-footer {
    position: sticky !important;
    bottom: 0;
    z-index: 1000;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #ffffff;
}

.about-content {
    line-height: 1.7;
    color: #333;
}

.about-content h1 {
    font-size: 2.5rem;
    color: #7c3aed;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 3px solid #7c3aed;
    padding-bottom: 0.5rem;
}

.about-intro {
    margin-bottom: 3rem;
}

.lead {
    font-size: 1.25rem;
    color: #555;
    font-weight: 400;
    line-height: 1.8;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
    border-left: 4px solid #7c3aed;
    padding-left: 1rem;
}

.about-section h3 {
    font-size: 1.25rem;
    color: #7c3aed;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-section p {
    margin-bottom: 1rem;
    color: #555;
}

.about-section a {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}

.about-section a:hover {
    border-bottom-color: #7c3aed;
}

/* Lists */
.features-list,
.audience-list,
.specs-list {
    list-style: none;
    padding: 0;
}

.features-list li,
.audience-list li,
.specs-list li {
    margin-bottom: 1.25rem;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.features-list li::before,
.audience-list li::before,
.specs-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #7c3aed;
    font-weight: bold;
    font-size: 1.2rem;
}

.features-list strong,
.audience-list strong,
.specs-list strong {
    color: #333;
    font-weight: 600;
}

/* Ordered list */
.process-list {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
}

.process-list li {
    counter-increment: step-counter;
    margin-bottom: 1.25rem;
    padding-left: 3rem;
    position: relative;
    color: #555;
}

.process-list li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    background: #7c3aed;
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* Use cases grid */
.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.use-case {
    background: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #7c3aed;
}

.use-case h3 {
    margin-top: 0;
}

.use-case p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

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

    .about-content h1 {
        font-size: 2rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    .use-cases {
        grid-template-columns: 1fr;
    }
}
