/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1976d2;
    --primary-dark: #1565c0;
    --primary-light: #42a5f5;
    --secondary-color: #424242;
    --text-primary: #212121;
    --text-secondary: #757575;
    --background: #ffffff;
    --surface: #f5f5f5;
    --border: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-md: rgba(0, 0, 0, 0.15);
    --shadow-lg: rgba(0, 0, 0, 0.2);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    font-size: 16px;
}

/* Information Banner */
.info-banner {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    color: white;
    padding: 12px 0;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-banner.hidden {
    display: none;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}

.banner-icon {
    flex-shrink: 0;
    color: white;
}

.banner-text {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

.banner-close {
    position: absolute;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.banner-close:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.banner-close:active {
    background-color: rgba(255, 255, 255, 0.25);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: var(--background);
    box-shadow: 0 2px 4px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 16px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: 40px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 80px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 4px var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    box-shadow: 0 4px 8px var(--shadow-md);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
}

/* Features Section */
.features {
    background-color: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card {
    background-color: var(--background);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Content Section */
.content-section {
    background-color: var(--surface);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    align-items: center;
}

.content-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.content-text p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.content-image {
    width: 100%;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-md);
}

.image-placeholder {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px var(--shadow-md);
}

.image-placeholder svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--background);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.benefit-item {
    background-color: var(--surface);
    padding: 32px;
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.benefit-item ul {
    list-style: none;
}

.benefit-item li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: var(--text-secondary);
}

.benefit-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Safety Section */
.safety-section {
    background-color: var(--surface);
}

.intro-text {
    text-align: center;
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 48px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.safety-card {
    background-color: var(--background);
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 4px var(--shadow);
}

.safety-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.safety-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-section .btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: var(--surface);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 48px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-column h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.page-hero .lead {
    font-size: 18px;
    color: var(--text-secondary);
}

/* About Page */
.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 48px 0 20px;
    color: var(--text-primary);
}

.about-content h2:first-child {
    margin-top: 0;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-items,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 32px 0;
}

.service-item,
.value-card {
    background-color: var(--surface);
    padding: 24px;
    border-radius: 8px;
}

.service-item h3,
.value-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-item p,
.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-list {
    margin: 20px 0 20px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.info-list li {
    margin-bottom: 8px;
}

/* FAQ Page */
.faq-section {
    background-color: var(--background);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--background);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background-color: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--surface);
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Page */
.contact-section {
    background-color: var(--background);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
}

.contact-info h2,
.contact-form-container h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.text-small {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    padding: 12px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    display: block;
}

.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    display: block;
}

/* Info Section */
.info-section {
    background-color: var(--surface);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.help-item {
    background-color: var(--background);
    padding: 24px;
    border-radius: 8px;
}

.help-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.help-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Notice Section */
.notice-section {
    background-color: #fff3e0;
    border-left: 4px solid #f57c00;
}

.notice-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.notice-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.notice-section a {
    color: var(--primary-color);
}

/* Legal Content */
.legal-content {
    background-color: var(--background);
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 32px;
    font-weight: 600;
    margin: 48px 0 20px;
    color: var(--text-primary);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: var(--text-primary);
}

.legal-text p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.legal-text ul {
    margin: 16px 0 16px 24px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.legal-text ul li {
    margin-bottom: 8px;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

.contact-info {
    background-color: var(--surface);
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.contact-info p {
    margin-bottom: 8px;
}

/* Banner Responsive */
@media (max-width: 768px) {
    .banner-content {
        gap: 8px;
        padding-right: 40px;
    }

    .banner-text {
        font-size: 13px;
        text-align: left;
    }

    .banner-close {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .info-banner {
        padding: 10px 0;
    }

    .banner-text {
        font-size: 12px;
    }

    .banner-icon {
        display: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px var(--shadow);
        gap: 16px;
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .features-grid,
    .benefits-grid,
    .safety-grid,
    .service-items,
    .values-grid,
    .help-grid {
        grid-template-columns: 1fr;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .feature-card,
    .benefit-item,
    .safety-card {
        padding: 20px;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-card {
        padding: 24px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-card {
        padding: 20px;
    }
    
    .guide-nav-grid {
        grid-template-columns: 1fr;
    }
}

/* Use Cases Section */
.use-cases-section {
    background-color: var(--surface);
    padding: 60px 0;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.use-case-card {
    background-color: var(--background);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.use-case-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px var(--shadow-md);
}

.use-case-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.use-case-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
    color: var(--text-primary);
}

.use-case-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 16px;
}

.use-case-tag {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--primary-light);
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Guide Page Styles */
.guide-navigation {
    background-color: var(--surface);
    padding: 40px 0;
}

.guide-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.guide-nav-item {
    background-color: var(--background);
    padding: 24px 20px;
    border-radius: 8px;
    text-decoration: none;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px var(--shadow);
}

.guide-nav-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px var(--shadow-md);
    border-left-width: 6px;
}

.nav-number {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.guide-nav-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
}

.guide-content {
    background-color: var(--background);
    padding: 60px 0;
}

.guide-section {
    max-width: 900px;
    margin: 0 auto 60px;
    scroll-margin-top: 100px;
}

.guide-section:last-child {
    margin-bottom: 0;
}

.guide-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--primary-color);
}

.content-block {
    margin-bottom: 40px;
    background-color: var(--surface);
    padding: 32px;
    border-radius: 8px;
}

.content-block:last-child {
    margin-bottom: 0;
}

.content-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.content-block h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 12px;
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

.content-block ul,
.content-block ol {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 16px 0 16px 24px;
}

.content-block li {
    margin-bottom: 12px;
}

.content-block strong {
    color: var(--text-primary);
    font-weight: 600;
}

.cta-section {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 0 0;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: white;
    opacity: 0.9;
}

/* Resources Page Styles */
.resources-section {
    background-color: var(--background);
    padding: 60px 0;
}

.resources-category {
    margin-bottom: 60px;
}

.resources-category:last-child {
    margin-bottom: 0;
}

.resources-category h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 32px;
    color: var(--text-primary);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
}

.resource-card {
    background-color: var(--surface);
    border-radius: 8px;
    padding: 28px;
    box-shadow: 0 2px 8px var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.resource-card:hover {
    box-shadow: 0 4px 16px var(--shadow-md);
    transform: translateY(-4px);
}

.resource-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-badge.security {
    background-color: #f44336;
    color: white;
}

.resource-badge.tips {
    background-color: #4caf50;
    color: white;
}

.resource-badge.legal {
    background-color: #ff9800;
    color: white;
}

.resource-badge.guide {
    background-color: #2196f3;
    color: white;
}

.resource-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    line-height: 1.3;
}

.resource-card > p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

.resource-content {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.resource-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 16px 0 12px;
    color: var(--text-primary);
}

.resource-content h4:first-child {
    margin-top: 0;
}

.resource-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.resource-content ul,
.resource-content ol {
    margin: 12px 0 16px 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.resource-content li {
    margin-bottom: 8px;
}

.resource-date {
    display: inline-block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 16px;
    font-style: italic;
}

/* Print Styles */
@media print {
    header,
    footer,
    .cta-section,
    .mobile-menu-toggle {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }

    a {
        text-decoration: underline;
        color: #000;
    }
}

