/* Homepage Specific Styles */

/* Hero styles moved to blocks.css */

/* CTA styles moved to blocks.css */

/* Feedback Link Section (Index Page) */
.feedback-link .content-container {
    text-align: center;
}

.feedback-link p {
    color: var(--text-secondary);
}

/* Features Section (Index Page Grid) */
/* NOTE: This section might also be considered a 'block' */
/* If reused elsewhere, move styles to blocks.css */
section.features h2 {
    text-align: center; /* Explicitly center this heading */
    /* font-size: 32px; /* REMOVED - Use global size */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 2em;
}

.feature-item {
    text-align: left;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.1);
}

.feature-item img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1em;
}

.feature-item h3 {
    font-size: 19px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0.4em;
    color: var(--text-primary);
}

.feature-item p {
    font-size: var(--font-size-base);
    line-height: 1.47;
    color: var(--text-secondary);
}

/* .hero h1 style moved to blocks.css */ 