/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1976d2;
    --primary-dark: #115293;
    --primary-light: #4791db;
    --text-primary: #212121;
    --text-secondary: #666666;
    --background-white: #ffffff;
    --background-light: #f5f5f5;
    --border-color: #e0e0e0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style-position: inside;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
header {
    background-color: var(--background-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
}

.logo img {
    width: 40px;
    height: 40px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-secondary);
    font-weight: 400;
    padding: 0.5rem 0;
    position: relative;
}

nav a:hover {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1976d2 0%, #115293 100%);
    color: var(--background-white);
    padding: 4rem 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    text-align: left;
}

.hero h1 {
    color: var(--background-white);
    margin-bottom: 1rem;
    font-size: 2.75rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Page Header */
.page-header {
    background-color: var(--background-light);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Sections */
section {
    padding: 3rem 0;
}

.intro {
    background-color: var(--background-white);
}

.editorial-note {
    background-color: #fff3cd;
    border-left: 4px solid #ff9800;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.editorial-note p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
    line-height: 1.6;
}

.editorial-note strong {
    color: #856404;
}

.editorial-note a {
    color: #d68910;
    text-decoration: underline;
    font-weight: 500;
}

.editorial-note a:hover {
    color: #b36b00;
}

.intro h2 {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.intro p {
    max-width: 900px;
    margin: 0 auto 1.5rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Featured Books Section */
.featured-books {
    background-color: var(--background-light);
}

.featured-books h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.book-category {
    margin-bottom: 3rem;
}

.book-category h3 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.book-card {
    background-color: var(--background-white);
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.book-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.book-card h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.book-card .author {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.book-card .description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.review-insight {
    background-color: var(--background-light);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    border-left: 3px solid var(--primary-color);
    line-height: 1.7;
}

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

.reading-time {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.value-proposition {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.05) 0%, rgba(17, 82, 147, 0.05) 100%);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.value-proposition h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.value-proposition p {
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose {
    background-color: var(--background-white);
}

.why-choose h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

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

.feature {
    text-align: center;
    padding: 2rem 1rem;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: block;
}

.feature h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1976d2 0%, #115293 100%);
    color: var(--background-white);
    text-align: center;
    padding: 4rem 0;
}

.cta h2 {
    color: var(--background-white);
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background-color: var(--background-white);
    color: var(--primary-color);
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--background-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Content Section */
.content-section {
    background-color: var(--background-white);
}

.content-section .container {
    max-width: 900px;
}

.page-illustration {
    text-align: center;
    margin-bottom: 3rem;
}

.page-illustration img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.content-section h2 {
    color: var(--text-primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h3 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.content-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.content-section ul,
.content-section ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    list-style-position: outside;
}

/* Policy Sections */
.policy-intro {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.policy-section h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

/* Contact Page */
.contact-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-info,
.contact-form-info {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 4px;
}

.contact-method {
    margin-bottom: 2rem;
}

.contact-method h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-topic {
    margin-bottom: 2rem;
}

.contact-topic h3 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.response-time,
.contact-note {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-color);
}

/* FAQ Page */
.faq-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

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

.faq-section h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.faq-item {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-footer {
    background: linear-gradient(135deg, #1976d2 0%, #115293 100%);
    color: var(--background-white);
    padding: 2rem;
    border-radius: 4px;
    text-align: center;
}

.faq-footer h2 {
    color: var(--background-white);
    margin-bottom: 1rem;
}

.faq-footer p {
    color: rgba(255, 255, 255, 0.9);
}

.faq-footer a {
    color: var(--background-white);
    text-decoration: underline;
}

/* Reading Guides Page */
.guide-intro {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

.guide-intro p {
    font-size: 1.05rem;
    line-height: 1.8;
}

.guide-section {
    margin-bottom: 4rem;
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.guide-section h2 {
    color: var(--text-primary);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.guide-section h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.guide-section p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.guide-section ul {
    margin: 1rem 0 1.5rem 0;
    padding-left: 2rem;
}

.guide-section li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.guide-section li strong {
    color: var(--primary-color);
    font-weight: 500;
}

.guide-footer {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(17, 82, 147, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.guide-footer h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.guide-footer p {
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.guide-footer a {
    font-weight: 500;
}

/* Articles Page */
.articles-intro {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
    font-size: 1.05rem;
    line-height: 1.8;
}

.article-full {
    background-color: var(--background-white);
    padding: 3rem;
    margin-bottom: 4rem;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--primary-color);
}

.article-full h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-meta {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.article-content {
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.article-content h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-content h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.article-content ul {
    margin: 1.5rem 0;
    padding-left: 2.5rem;
}

.article-content li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.article-content li strong {
    color: var(--primary-color);
}

.articles-cta {
    background: linear-gradient(135deg, #1976d2 0%, #115293 100%);
    color: var(--background-white);
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
}

.articles-cta h2 {
    color: var(--background-white);
    margin-bottom: 1rem;
}

.articles-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1rem;
}

.articles-cta a {
    color: var(--background-white);
    text-decoration: underline;
    font-weight: 500;
}

/* 404 Error Page */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.error-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.error-code {
    font-size: 8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1;
}

.error-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.error-content > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.error-suggestions {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: left;
}

.error-suggestions h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.error-suggestions ul {
    list-style: none;
    padding-left: 0;
}

.error-suggestions li {
    margin-bottom: 0.75rem;
}

.error-suggestions a {
    color: var(--primary-color);
    font-weight: 500;
}

.search-suggestion {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.search-suggestion p {
    margin: 0;
    line-height: 1.7;
}

/* Sitemap Page */
.sitemap-intro {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 4px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

.sitemap-section {
    margin-bottom: 3rem;
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.sitemap-section h2 {
    color: var(--primary-color);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.sitemap-list {
    list-style: none;
    padding-left: 0;
}

.sitemap-list > li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.sitemap-list > li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.sitemap-list ul {
    margin-top: 0.75rem;
    margin-left: 1.5rem;
    list-style: none;
    padding-left: 0;
}

.sitemap-list ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.sitemap-list ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.sitemap-list a {
    color: var(--primary-color);
    font-weight: 500;
}

.business-info {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.business-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.sitemap-footer {
    background: linear-gradient(135deg, rgba(25, 118, 210, 0.1) 0%, rgba(17, 82, 147, 0.1) 100%);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.sitemap-footer h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.sitemap-footer p {
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Thank You Page */
.thank-you-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    color: var(--primary-color);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thank-you-message {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.7;
}

.what-next {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

.what-next h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1.5rem;
}

.what-next ul {
    list-style: none;
    padding-left: 0;
    max-width: 500px;
    margin: 0 auto;
}

.what-next li {
    padding-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.7;
}

.what-next li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.continue-exploring {
    margin-bottom: 3rem;
}

.continue-exploring h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.continue-exploring > p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.suggestion-card {
    background-color: var(--background-white);
    border: 2px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.suggestion-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.suggestion-card h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.suggestion-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.back-home {
    margin-top: 3rem;
}

.back-home .btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.back-home .btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
footer {
    background-color: #212121;
    color: #ffffff;
    padding: 3rem 0 1rem;
    margin-top: 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #424242;
}

.footer-bottom p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .book-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 2rem 0;
    }

    .hero {
        padding: 3rem 0;
    }

    .page-header {
        padding: 2rem 0;
    }

    .cta {
        padding: 3rem 0;
    }
}

