* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styles are handled by main site styles.css - don't override */
.rich-snippets-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.rich-snippets-container header {
    text-align: center;
    padding: 2rem 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--accent-color);
}

.rich-snippets-container header h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
    color: var(--text-color);
    border-bottom: none;
    margin-top: 0;
}

.rich-snippets-container header p {
    color: var(--date-color);
    font-size: 1.1em;
}

.rich-snippets-container h2 {
    font-size: 2em;
    color: var(--accent-color);
    margin-bottom: 1rem;
    margin-top: 1.5em;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
    margin-top: 2rem;
}

@media (max-width: 600px) {
    .rich-snippets-container {
        padding: 1rem 0.5rem;
    }
    
    header h1 {
        font-size: 2em;
    }
}

