/* SEO Content Section - Hidden visually but accessible to search engines */
.seo-content {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.seo-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.seo-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.seo-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Newsletter Section */
.newsletter-section {
    padding: 5rem 0;
    background: var(--muted);
}

.newsletter-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--card);
    padding: 3rem 2rem;
    border-radius: calc(var(--radius) * 2);
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.newsletter-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    margin-bottom: 2rem;
}

.newsletter-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.newsletter-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--input);
    border-radius: var(--radius);
    background: var(--background);
    font-size: 1rem;
    transition: all 0.2s;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px hsla(var(--ring) / 0.1);
}

.newsletter-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}