/* C60 Authority Website Styles */

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

:root {
    /* Color Palette */
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #e5e7eb;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background-white: #ffffff;
    --background-light: #f9fafb;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;

    /* Typography */
    --font-serif: 'Georgia', 'Times New Roman', serif;
    --font-sans: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.875rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

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

a:hover {
    color: var(--secondary-color);
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--space-md));
}

.col {
    flex: 1;
    padding: 0 var(--space-md);
}

.col-half {
    flex: 0 0 50%;
    padding: 0 var(--space-md);
}

.col-third {
    flex: 0 0 33.333%;
    padding: 0 var(--space-md);
}

.col-quarter {
    flex: 0 0 25%;
    padding: 0 var(--space-md);
}

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) 0;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: var(--space-xl);
}

.nav-link {
    font-weight: 500;
    padding: var(--space-sm) 0;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--background-white) 100%);
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/c60_hero_products.png') center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
    color: var(--text-dark);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: var(--space-xl);
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-md) var(--space-xl);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-group {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

/* Cards */
.card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: var(--space-xl);
}

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

.card-header {
    margin-bottom: var(--space-lg);
}

.card-title {
    margin-bottom: var(--space-sm);
}

.card-body {
    margin-bottom: var(--space-lg);
}

.card-footer {
    margin-top: auto;
}

/* Product Comparison Table */
.comparison-section {
    padding: var(--space-3xl) 0;
    background: var(--background-light);
}

.comparison-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.search-input {
    padding: var(--space-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    min-width: 300px;
}

.filter-group {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.filter-select {
    padding: var(--space-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: white;
}

.comparison-table {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.table th {
    background: var(--background-light);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.table th:hover {
    background: var(--accent-color);
}

.table td {
    vertical-align: middle;
}

.product-name {
    font-weight: 600;
    color: var(--text-dark);
}

.product-brand {
    color: var(--text-light);
    font-size: 0.875rem;
}

.rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.stars {
    color: #fbbf24;
}

.price {
    font-weight: 600;
    color: var(--success-color);
}

.certification-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background: var(--accent-color);
    color: var(--text-light);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    margin: var(--space-xs);
}

/* FAQ Section */
.faq-section {
    padding: var(--space-3xl) 0;
}

.faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    justify-content: center;
}

.category-filter {
    padding: var(--space-sm) var(--space-lg);
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.category-filter.active,
.category-filter:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.faq-search {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.faq-item {
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.faq-question {
    padding: var(--space-lg);
    background: var(--background-light);
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    font-weight: 600;
}

.faq-question:hover {
    background: var(--accent-color);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--background-white);
}

.faq-answer.active {
    padding: var(--space-lg);
    max-height: 500px;
}

/* Research Section */
.research-section {
    padding: var(--space-3xl) 0;
    background: var(--background-light);
}

.research-filters {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    justify-content: center;
}

.research-card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.research-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.research-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
}

.research-tag {
    padding: var(--space-xs) var(--space-sm);
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.research-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
    color: var(--text-dark);
}

.research-authors {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: var(--space-sm);
}

.research-citation {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
}

.research-summary {
    margin-bottom: var(--space-md);
}

/* Blog Section */
.blog-section {
    padding: var(--space-3xl) 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.blog-card {
    background: var(--background-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: var(--space-xl);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
    color: var(--text-light);
    font-size: 0.875rem;
}

.blog-category {
    padding: var(--space-xs) var(--space-sm);
    background: var(--secondary-color);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
}

.blog-title {
    font-size: 1.25rem;
    margin-bottom: var(--space-md);
    color: var(--text-dark);
}

.blog-excerpt {
    margin-bottom: var(--space-md);
    color: var(--text-light);
}

/* Newsletter Section */
.newsletter-section {
    padding: var(--space-3xl) 0;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    color: white;
    margin-bottom: var(--space-md);
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    display: flex;
    max-width: 400px;
    margin: 0 auto;
    gap: var(--space-md);
}

.newsletter-input {
    flex: 1;
    padding: var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.newsletter-btn {
    padding: var(--space-md) var(--space-xl);
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--space-3xl) 0 var(--space-xl);
}

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

.footer-section h3 {
    color: white;
    margin-bottom: var(--space-md);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-sm);
    display: block;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: var(--space-xl);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Admin Panel Styles */
.admin-panel {
    background: var(--background-light);
    min-height: 100vh;
    padding: var(--space-xl);
}

.admin-header {
    background: var(--background-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.admin-nav {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.admin-nav-item {
    padding: var(--space-md) var(--space-lg);
    background: var(--background-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
}

.admin-nav-item:hover,
.admin-nav-item.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.admin-section {
    background: var(--background-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 600;
    color: var(--text-dark);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.editor-toolbar {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
    padding: var(--space-md);
    background: var(--background-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.editor-btn {
    padding: var(--space-sm);
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
}

.editor-btn:hover {
    background: var(--accent-color);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

.hidden { display: none; }
.visible { display: block; }

.loading {
    opacity: 0.6;
    pointer-events: none;
}

.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Content Sections Admin Styles */
.content-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.content-section-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.content-section-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.content-section-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.content-editor {
    min-height: 200px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    line-height: 1.6;
    resize: vertical;
}

.word-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.5rem;
}

.word-count.warning {
    color: var(--warning-color);
    font-weight: 600;
}

.word-count.error {
    color: var(--error-color);
    font-weight: 600;
}

.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-end;
}

.content-tips {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.content-tips h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.content-tips ul {
    list-style: none;
    padding: 0;
}

.content-tips li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.content-tips li:last-child {
    border-bottom: none;
}

.content-tips code {
    background: var(--white);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* Blog Editor Enhancements */
.blog-editor {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    font-size: 1rem;
}

.editor-toolbar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-bottom: none;
    border-radius: 0.375rem 0.375rem 0 0;
    flex-wrap: wrap;
}

.editor-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    background: var(--white);
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.editor-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.editor-separator {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    margin: 0 0.5rem;
}

.editor-toolbar .word-count {
    margin-left: auto;
    font-weight: 600;
    color: var(--text-muted);
}

/* Additional Button Styles */
.btn-warning-admin {
    background: #f59e0b;
    color: white;
    border: 1px solid #f59e0b;
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-warning-admin:hover {
    background: #d97706;
    border-color: #d97706;
}

.btn-light-admin {
    background: var(--bg-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-light-admin:hover {
    background: var(--border-color);
}

/* Blog Status Indicators */
.blog-status-draft {
    background: #fbbf24;
    color: #92400e;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-status-published {
    background: #10b981;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-status-scheduled {
    background: #3b82f6;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-publish {
    background: #10b981 !important;
    color: white !important;
    border: 1px solid #10b981 !important;
}

.btn-publish:hover {
    background: #059669 !important;
    border-color: #059669 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
    }
    
    .row {
        margin: 0 calc(-1 * var(--space-sm));
    }
    
    .col,
    .col-half,
    .col-third,
    .col-quarter {
        flex: 0 0 100%;
        padding: 0 var(--space-sm);
        margin-bottom: var(--space-md);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .btn-group {
        flex-direction: column;
        align-items: center;
    }
    
    .navbar {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .nav-menu {
        flex-direction: column;
        gap: var(--space-sm);
        width: 100%;
        text-align: center;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .comparison-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-input {
        min-width: auto;
    }
    
    .filter-group {
        justify-content: center;
    }
    
    .table {
        font-size: 0.875rem;
    }
    
    .table th,
    .table td {
        padding: var(--space-sm);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .admin-nav {
        justify-content: center;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .card {
        padding: var(--space-lg);
    }
    
    .admin-section {
        padding: var(--space-lg);
    }
}

/* Custom Content Sections */
.content-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.content-section:nth-child(even) {
    background: var(--white);
}

.content-wrapper {
    max-width: 100%;
}

.content-wrapper h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-wrapper h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.content-wrapper h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 1.5rem 0 1rem 0;
}

.content-wrapper p {
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: var(--text-color);
}

.content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.content-wrapper .image-caption {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: -1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.content-wrapper ul, .content-wrapper ol {
    margin: 1.2rem 0;
    padding-left: 2rem;
}

.content-wrapper li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.content-wrapper blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-muted);
    background: var(--bg-light);
    padding: 1rem 1.5rem;
    border-radius: 0 8px 8px 0;
}

.content-wrapper .highlight-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.content-wrapper .info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.content-wrapper .info-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
}

/* Print Styles */
@media print {
    .header,
    .newsletter-section,
    .footer {
        display: none;
    }
    
    .container {
        max-width: none;
        padding: 0;
    }
    
    .card {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
}
