/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: 220 95% 50%; /* #0080FF */
    --primary-dark: 220 95% 35%; /* #0066CC */
    --primary-light: 220 95% 85%; /* #CCE5FF */
    --secondary: 45 100% 50%; /* #FFB800 */
    --accent: 15 100% 55%; /* #FF4500 */
    --background: 210 11% 98%; /* #F5F7FA */
    --surface: 0 0% 100%; /* #FFFFFF */
    --text-primary: 215 25% 27%; /* #3A4553 */
    --text-secondary: 215 15% 47%; /* #6B7583 */
    --text-muted: 215 10% 65%; /* #95A1B0 */
    --border: 215 20% 90%; /* #E1E6ED */
    --border-light: 215 20% 95%; /* #F0F2F5 */
    --success: 120 60% 45%; /* #4CAF50 */
    --warning: 45 100% 50%; /* #FFB800 */
    --error: 0 85% 55%; /* #F44336 */
    
    /* Typography */
    --font-family-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-family-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --container-padding: 2rem;
    --section-padding: 4rem 0;
    
    /* Border radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 hsl(215 25% 27% / 0.05);
    --shadow: 0 1px 3px 0 hsl(215 25% 27% / 0.1), 0 1px 2px -1px hsl(215 25% 27% / 0.1);
    --shadow-md: 0 4px 6px -1px hsl(215 25% 27% / 0.1), 0 2px 4px -2px hsl(215 25% 27% / 0.1);
    --shadow-lg: 0 10px 15px -3px hsl(215 25% 27% / 0.1), 0 4px 6px -4px hsl(215 25% 27% / 0.1);
    --shadow-xl: 0 20px 25px -5px hsl(215 25% 27% / 0.1), 0 8px 10px -6px hsl(215 25% 27% / 0.1);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
}

/* Base typography */
body {
    font-family: var(--font-family-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: hsl(var(--text-primary));
    background-color: hsl(var(--background));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 700;
    line-height: 1.2;
    color: hsl(var(--text-primary));
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

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

a {
    color: hsl(var(--primary));
    text-decoration: none;
    transition: var(--transition-fast);
}

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

/* Utility classes */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: hsl(var(--text-primary));
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: hsl(var(--text-secondary));
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

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

.btn-secondary {
    background-color: hsl(var(--secondary));
    color: hsl(var(--text-primary));
}

.btn-secondary:hover {
    background-color: hsl(45 100% 40%);
    color: hsl(var(--text-primary));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--text-primary));
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: hsl(var(--primary));
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 3px;
    background-color: hsl(var(--text-primary));
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, hsl(var(--primary-light)), hsl(var(--background)));
}

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

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--text-primary));
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: hsl(var(--text-secondary));
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

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

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

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: hsl(var(--surface));
}

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

.service-card {
    background-color: hsl(var(--surface));
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

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

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

.service-card h3 {
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

.service-card p {
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    padding: 0.25rem 0;
    color: hsl(var(--text-secondary));
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--success));
    font-weight: bold;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background-color: hsl(var(--background));
}

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

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

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.feature img {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.feature h4 {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-primary));
}

.feature p {
    margin: 0;
    color: hsl(var(--text-secondary));
}

/* Testimonials Section */
.testimonials {
    padding: var(--section-padding);
    background-color: hsl(var(--surface));
}

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

.testimonial-card {
    background-color: hsl(var(--background));
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: hsl(var(--text-secondary));
}

.testimonial-author strong {
    color: hsl(var(--text-primary));
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: hsl(var(--text-muted));
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: var(--section-padding);
    background: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-dark)));
    color: white;
}

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

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    color: hsl(var(--primary-light));
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input {
    padding: 0.75rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    background-color: white;
    color: hsl(var(--text-primary));
}

.form-group input:focus {
    outline: none;
    box-shadow: 0 0 0 3px hsl(var(--primary-light));
}

/* Blog Preview Section */
.blog-preview {
    padding: var(--section-padding);
    background-color: hsl(var(--background));
}

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

.blog-card {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.blog-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: hsl(var(--background));
}

.blog-image img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h3 a {
    color: hsl(var(--text-primary));
    text-decoration: none;
}

.blog-content h3 a:hover {
    color: hsl(var(--primary));
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-date {
    color: hsl(var(--text-muted));
}

.blog-category {
    background-color: hsl(var(--primary-light));
    color: hsl(var(--primary-dark));
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-more {
    text-align: center;
    margin-top: 3rem;
}

/* Footer */
.footer {
    background-color: hsl(var(--text-primary));
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand h3 {
    color: white;
    margin: 0;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: hsl(var(--text-muted));
    transition: var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: hsl(var(--text-muted));
    transition: var(--transition-fast);
}

.social-links a:hover {
    color: hsl(var(--primary-light));
}

.footer-bottom {
    border-top: 1px solid hsl(var(--text-secondary));
    padding-top: 1rem;
}

.footer-legal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: hsl(var(--text-muted));
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: white;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: hsl(var(--surface));
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    padding: 1.5rem;
    border-top: 3px solid hsl(var(--primary));
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content h3 {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-primary));
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: hsl(215 25% 27% / 0.5);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.modal-content {
    background-color: hsl(var(--surface));
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid hsl(var(--border));
}

.modal-header h2 {
    margin: 0;
    color: hsl(var(--text-primary));
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: hsl(var(--text-muted));
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    color: hsl(var(--text-primary));
}

.modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    margin-bottom: 0.5rem;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.slider {
    position: relative;
    width: 50px;
    height: 24px;
    background-color: hsl(var(--border));
    border-radius: 12px;
    transition: var(--transition);
}

.slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.cookie-toggle input:checked + .slider {
    background-color: hsl(var(--primary));
}

.cookie-toggle input:checked + .slider::before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .slider {
    opacity: 0.6;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid hsl(var(--border));
    text-align: right;
}

/* Legal Pages */
.legal-page {
    padding: var(--section-padding);
    background-color: hsl(var(--surface));
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-meta {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: hsl(var(--background));
    border-radius: var(--radius);
    border-left: 4px solid hsl(var(--primary));
}

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

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

.legal-section h3 {
    color: hsl(var(--text-primary));
    margin-top: 2rem;
    margin-bottom: 1rem;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-secondary));
}

.legal-section strong {
    color: hsl(var(--text-primary));
}

/* Thanks Page */
.thanks-page {
    padding: var(--section-padding);
    background-color: hsl(var(--surface));
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon svg {
    width: 80px;
    height: 80px;
    color: hsl(var(--success));
}

.thanks-message {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: hsl(var(--text-secondary));
}

.thanks-info {
    background-color: hsl(var(--background));
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
    text-align: left;
}

.thanks-info h3 {
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

.thanks-info ul {
    list-style: none;
    margin-left: 0;
}

.thanks-info li {
    padding: 0.5rem 0;
    color: hsl(var(--text-secondary));
    position: relative;
    padding-left: 1.5rem;
}

.thanks-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Blog Page */
.blog-page {
    padding: var(--section-padding);
    background-color: hsl(var(--surface));
}

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

.page-header h1 {
    margin-bottom: 1rem;
}

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

.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-main .blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.blog-card.featured {
    grid-column: 1 / -1;
}

.blog-card.featured .blog-image {
    height: 250px;
}

.blog-card.featured .blog-image img {
    width: 100px;
    height: 100px;
}

.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background-color: hsl(var(--background));
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    color: hsl(var(--text-secondary));
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid hsl(var(--border-light));
    transition: var(--transition-fast);
}

.category-list a:hover {
    color: hsl(var(--primary));
    padding-left: 0.5rem;
}

.recent-posts .recent-post {
    padding: 1rem 0;
    border-bottom: 1px solid hsl(var(--border-light));
}

.recent-posts .recent-post:last-child {
    border-bottom: none;
}

.recent-posts h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.recent-posts h4 a {
    color: hsl(var(--text-primary));
}

.recent-posts h4 a:hover {
    color: hsl(var(--primary));
}

.post-date {
    font-size: 0.875rem;
    color: hsl(var(--text-muted));
}

.newsletter-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-sidebar-form input {
    padding: 0.75rem;
    border: 1px solid hsl(var(--border));
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.newsletter-sidebar-form input:focus {
    outline: none;
    border-color: hsl(var(--primary));
    box-shadow: 0 0 0 3px hsl(var(--primary-light));
}

/* Article Page */
.article-page {
    padding: var(--section-padding);
    background-color: hsl(var(--surface));
}

.article-content {
    max-width: 800px;
}

.article-header {
    margin-bottom: 3rem;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: hsl(var(--text-muted));
}

.breadcrumb a {
    color: hsl(var(--primary));
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.article-category {
    background-color: hsl(var(--primary-light));
    color: hsl(var(--primary-dark));
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
}

.article-date,
.reading-time {
    color: hsl(var(--text-muted));
    font-size: 0.875rem;
}

.article-image {
    text-align: center;
    margin: 2rem 0;
}

.article-image img {
    width: 120px;
    height: 120px;
}

.article-body h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: hsl(var(--text-primary));
    border-bottom: 2px solid hsl(var(--primary));
    padding-bottom: 0.5rem;
}

.article-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

.article-body h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: hsl(var(--text-primary));
}

.article-body ul,
.article-body ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-secondary));
}

.article-body strong {
    color: hsl(var(--text-primary));
}

.article-body em {
    color: hsl(var(--text-muted));
    font-style: italic;
}

.price-table,
.cost-analysis,
.tco-calculator,
.safety-table {
    background-color: hsl(var(--background));
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.price-table table,
.safety-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.price-table th,
.price-table td,
.safety-table th,
.safety-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid hsl(var(--border));
}

.price-table th,
.safety-table th {
    background-color: hsl(var(--primary-light));
    color: hsl(var(--primary-dark));
    font-weight: 600;
}

.article-cta {
    background: linear-gradient(135deg, hsl(var(--primary-light)), hsl(var(--background)));
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    margin-bottom: 1rem;
    color: hsl(var(--text-primary));
}

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

.article-footer {
    border-top: 1px solid hsl(var(--border));
    padding-top: 2rem;
    margin-top: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.article-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background-color: hsl(var(--background));
    color: hsl(var(--text-secondary));
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.tag:hover {
    background-color: hsl(var(--primary-light));
    color: hsl(var(--primary-dark));
}

.article-share {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-link {
    color: hsl(var(--text-secondary));
    padding: 0.5rem;
    transition: var(--transition-fast);
}

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

.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.related-articles .related-article {
    padding: 1rem 0;
    border-bottom: 1px solid hsl(var(--border-light));
}

.related-articles .related-article:last-child {
    border-bottom: none;
}

.related-articles h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.related-articles h4 a {
    color: hsl(var(--text-primary));
}

.related-articles h4 a:hover {
    color: hsl(var(--primary));
}

.contact-info {
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: hsl(var(--text-secondary));
    font-size: 0.9rem;
}

.download-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.download-list li {
    margin-bottom: 0.5rem;
}

.download-list a {
    color: hsl(var(--primary));
    text-decoration: underline;
    font-size: 0.9rem;
}

.download-list a:hover {
    color: hsl(var(--primary-dark));
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
        --section-padding: 3rem 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .footer-legal {
        flex-direction: column;
        text-align: center;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .price-table table,
    .safety-table table {
        font-size: 0.875rem;
    }
    
    .price-table th,
    .price-table td,
    .safety-table th,
    .safety-table td {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: 90vh;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .price-table,
    .safety-table {
        overflow-x: auto;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .article-sidebar,
    .thanks-actions,
    .article-cta,
    .social-links {
        display: none;
    }
    
    .article-page {
        padding: 0;
    }
    
    .legal-page {
        padding: 0;
    }
    
    body {
        background-color: white;
        color: black;
    }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid hsl(var(--primary));
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: 0 0% 0%;
        --text-secondary: 0 0% 20%;
        --border: 0 0% 50%;
        --background: 0 0% 100%;
        --surface: 0 0% 100%;
    }
}
