/* Styles for feature pages (recall.html, monitor.html, analyze.html) */

/* Simple header for feature pages */
.feature-header {
    background-color: var(--white);
    padding: 1rem;
    border-bottom: 1px solid #eee;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-align: center;
    margin-bottom: 2rem;
}

.feature-header .logo-link {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-primary);
    text-decoration: none;
}

.feature-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 3rem; /* Add bottom padding */
}

.feature-content h1 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem; /* Space between icon and text */
}

.feature-content h1 i {
    font-size: 0.9em; /* Slightly smaller icon */
}

.feature-content h2 {
        font-size: 1.5rem; /* Slightly smaller than page title */
        margin-top: 2rem;
        margin-bottom: 1rem;
        border-bottom: 2px solid var(--accent-color);
        padding-bottom: 0.5rem;
        text-align: left; /* Align subtitles left */
        color: var(--heading-color); /* Ensure consistent heading color */
}

.feature-content p,
.feature-content ul {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.feature-content ul {
    list-style: disc;
    margin-left: 1.5rem; /* Adjusted margin */
    padding-left: 1rem;
}

.example {
    background-color: var(--accent-color);
    padding: 1.2rem 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 2px 5px rgba(0, 86, 179, 0.05);
}

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

.example strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.example em {
    color: #444;
    font-style: italic;
    display: block;
    margin-top: 0.5rem;
}

.back-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.6rem 1.2rem;
    background-color: var(--light-bg);
    border: 1px solid #ddd;
    border-radius: 25px; /* Match CTA button style */
    color: var(--text-color);
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    font-weight: bold;
}

.back-link:hover {
    background-color: #e2e6ea;
    border-color: #c8ced3;
    color: var(--primary-color);
}


/* Simple Footer Style */
.feature-footer p {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}

/* Styles for Feature Page Images */
.feature-image-container {
    margin: 1.5rem 0 2.5rem; /* Add spacing around the image */
    text-align: center;
}

.feature-page-image {
    max-width: 100%;
    height: auto;
    max-height: 350px; /* Limit max height */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: inline-block; /* Center using text-align on parent */
} 