:root {
    --primary-color: #1e88e5;
    --primary-dark: #1565c0;
    --primary-light: #64b5f6;
    --secondary-color: #26a69a;
    --secondary-dark: #00897b;
    --accent-color: #ff6e40;
    --text-primary: #212121;
    --text-secondary: #757575;
    --text-light: #ffffff;
    --background-light: #ffffff;
    --background-grey: #f5f7fa;
    --background-dark: #263238;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition-speed: 0.3s;
    --font-main: 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', Helvetica, Arial, sans-serif;
    --max-width: 1200px;
    --header-height: 80px;
    --footer-bg: #1a1a2e;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
}

/* Dark Theme Variables */
[data-theme="dark"] {
    --primary-color: #64b5f6;
    --primary-dark: #1976d2;
    --primary-light: #90caf9;
    --secondary-color: #4db6ac;
    --secondary-dark: #26a69a;
    --text-primary: #e0e0e0;
    --text-secondary: #b0b0b0;
    --background-light: #1e1e2f;
    --background-grey: #161625;
    --background-dark: #0d0d1a;
    --border-color: #2c2c3a;
    --footer-bg: #0d0d1a;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.4);
}

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

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

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--background-light);
    line-height: 1.6;
    transition: background-color var(--transition-speed), color var(--transition-speed);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

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

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

p {
    margin-bottom: 1.5rem;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    cursor: pointer;
    font-family: var(--font-main);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Language Switcher */
.language-switch {
    position: absolute;
    top: 0.5rem;
    right: 1.5rem;
    z-index: 1000;
    font-size: 0.875rem;
}

.language-switch button {
    background: transparent;
    border: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
}

.language-options {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    width: 120px;
    z-index: 1000;
}

.language-switch:hover .language-options {
    display: block;
}

.language-options a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    transition: background-color var(--transition-speed);
}

.language-options a:hover {
    background-color: var(--background-grey);
}

.language-options a.active {
    background-color: var(--primary-light);
    color: var(--text-light);
}

/* Header Styles */
header {
    background-color: var(--primary-color);
    color: var(--text-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    transition: background-color var(--transition-speed);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
    padding: 0 1.5rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    border-radius: var(--radius-sm);
}

nav {
    display: flex;
    align-items: center;
}

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

.nav-links li a {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--transition-speed);
}

.nav-links li a:hover,
.nav-links li a.active {
    color: rgba(255, 255, 255, 0.85);
}

.nav-links li a:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-light);
    transition: width var(--transition-speed);
}

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

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

#theme-toggle {
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color var(--transition-speed);
}

#theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-light);
    transition: all var(--transition-speed);
}

/* Hero Section */
.hero {
    background-image: var(--gradient-primary);
    color: var(--text-light);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.primary-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: var(--shadow-sm);
}

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

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

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

.tertiary-btn {
    background-color: transparent;
    color: var(--text-secondary);
}

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

/* Featured Posts Section */
.featured-posts {
    padding: 5rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 0;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.post-card {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.post-image {
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-date {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.post-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.post-content h3 a {
    color: var(--text-primary);
}

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

.post-content p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--background-grey);
    padding: 4rem 0;
    text-align: center;
}

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

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

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

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background-color: var(--background-light);
    color: var(--text-primary);
    font-family: var(--font-main);
    font-size: 1rem;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.1);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox input {
    width: auto;
    margin-top: 0.25rem;
}

#newsletter-form .form-group {
    display: flex;
    margin-bottom: 0;
}

#newsletter-form input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    flex: 1;
}

#newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Topics Section */
.topics {
    padding: 5rem 0;
}

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

.topic-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.topic-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.topic-card h3 {
    margin-bottom: 1rem;
}

.topic-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding-top: 4rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    width: 120px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
}

.footer-links {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-column {
    flex: 1;
    min-width: 180px;
}

.footer-column h3 {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 1.125rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-speed);
}

.footer-column ul li a:hover {
    color: var(--text-light);
}

.footer-column address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column address p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-column address a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-column address a:hover {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    transition: background-color var(--transition-speed);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--background-light);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.5rem;
    display: none;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0.5rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.cookie-content a {
    font-size: 0.875rem;
}

/* Blog Page Styles */
.page-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

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

.page-header p {
    opacity: 0.9;
    margin-bottom: 0;
    font-size: 1.125rem;
}

.blog-page {
    padding: 4rem 0;
}

.blog-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.blog-post-card {
    display: flex;
    flex-direction: column;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2.5rem;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

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

.blog-post-card .post-image {
    height: 300px;
}

.blog-post-card .post-content {
    padding: 2rem;
}

.blog-post-card .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-post-card .post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.blog-post-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.blog-post-card h2 a {
    color: var(--text-primary);
}

.blog-post-card h2 a:hover {
    color: var(--primary-color);
}

.blog-post-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.blog-post-card .btn {
    align-self: flex-start;
}

/* Blog Sidebar */
.blog-sidebar {
    margin-top: 3rem;
}

.sidebar-widget {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.25rem;
}

.search-form {
    display: flex;
    gap: 0;
}

.search-form input {
    flex: 1;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.search-form button {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0 1rem;
    border-top-right-radius: var(--radius-md);
    border-bottom-right-radius: var(--radius-md);
    transition: background-color var(--transition-speed);
}

.search-form button:hover {
    background-color: var(--primary-dark);
}

.categories-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-widget li {
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.categories-widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    color: var(--text-primary);
}

.categories-widget a:hover {
    color: var(--primary-color);
}

.categories-widget span {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.popular-post h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.popular-post .post-date {
    font-size: 0.75rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--background-grey);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.tags a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.newsletter-widget p {
    margin-bottom: 1.25rem;
}

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

.newsletter-form input {
    width: 100%;
}

/* Single Post Styles */
.single-post {
    padding-bottom: 4rem;
}

.post-header {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0;
}

.post-header .post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.post-header .post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
}

.post-header h1 {
    color: var(--text-light);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.post-excerpt {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 800px;
    margin-bottom: 0;
}

.post-featured-image {
    height: 500px;
    width: 100%;
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 3rem 0;
    display: flex;
    gap: 3rem;
}

.content-wrapper {
    flex: 2;
    min-width: 0;
}

.table-of-contents {
    background-color: var(--background-grey);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.table-of-contents h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--text-primary);
}

.table-of-contents a:hover {
    color: var(--primary-color);
}

.post-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.post-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.post-content ul, .post-content ol {
    margin-bottom: 1.5rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.quote-box {
    background-color: var(--background-grey);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.quote-box blockquote {
    font-style: italic;
    margin: 0;
    margin-bottom: 0.75rem;
}

.quote-box cite {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-style: normal;
    text-align: right;
}

.comparison-table {
    margin: 2rem 0;
    overflow-x: auto;
}

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

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    text-align: left;
}

.comparison-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table tr:nth-child(even) {
    background-color: var(--background-grey);
}

.post-sidebar {
    flex: 1;
    min-width: 300px;
}

.author-box {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    object-fit: cover;
}

.author-box h3 {
    margin-bottom: 0.5rem;
}

.author-box p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--background-grey);
    color: var(--text-primary);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.author-social a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.related-posts {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.related-posts h3 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.25rem;
}

.related-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.related-post:last-child {
    margin-bottom: 0;
}

.related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.related-post h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.related-post span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.share-box {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.share-box h3 {
    margin-bottom: 1.25rem;
    font-size: 1.25rem;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.share-buttons .facebook {
    background-color: #3b5998;
    color: white;
}

.share-buttons .twitter {
    background-color: #1da1f2;
    color: white;
}

.share-buttons .linkedin {
    background-color: #0077b5;
    color: white;
}

.share-buttons .whatsapp {
    background-color: #25d366;
    color: white;
}

.share-buttons .email {
    background-color: #dd4b39;
    color: white;
}

.share-buttons a:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.post-footer {
    margin-top: 3rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
    align-items: center;
}

.post-tags span {
    font-weight: 500;
}

.post-tags a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--background-grey);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.post-tags a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.nav-previous, .nav-next {
    max-width: 45%;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.post-navigation span {
    display: block;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.25rem;
}

.post-navigation a {
    font-weight: 500;
    color: var(--text-primary);
}

.post-navigation a:hover {
    color: var(--primary-color);
}

.comments-section {
    margin-top: 3rem;
}

.comments-section h2 {
    margin-bottom: 2rem;
}

.comment {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

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

.comment-author {
    font-weight: 500;
}

.comment-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.comment-content p {
    margin-bottom: 0.75rem;
}

.comment-actions {
    display: flex;
    gap: 1rem;
}

.reply-btn {
    font-size: 0.875rem;
    font-weight: 500;
}

.comment-form h3 {
    margin-bottom: 1.5rem;
}

.newsletter-banner {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 4rem 0;
}

.newsletter-banner h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.newsletter-banner p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.newsletter-banner .newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-banner input {
    flex: 1;
    border: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.newsletter-banner button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* About Page Styles */
.about-intro {
    padding: 4rem 0;
}

.about-intro-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-intro-text {
    flex: 1;
}

.about-intro-image {
    flex: 1;
}

.about-intro-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

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

.mission-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-speed);
}

.mission-item:hover {
    transform: translateY(-5px);
}

.mission-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-item h3 {
    margin-bottom: 1rem;
}

.mission-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.our-mission {
    padding: 4rem 0;
    background-color: var(--background-grey);
}

.team-section {
    padding: 4rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-speed);
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed);
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-info {
    padding: 1.5rem;
}

.member-role {
    display: block;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.member-social {
    display: flex;
    gap: 0.75rem;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--background-grey);
    color: var(--text-primary);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.values-section {
    padding: 4rem 0;
    background-color: var(--background-grey);
}

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

.value-card {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-speed);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

.partners-section {
    padding: 4rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.partner {
    text-align: center;
}

.partner img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: 0 auto 1.5rem;
    filter: grayscale(100%);
    transition: filter var(--transition-speed), transform var(--transition-speed);
}

.partner:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
}

.partner h3 {
    margin-bottom: 0.75rem;
}

.partner p {
    color: var(--text-secondary);
}

.testimonials {
    padding: 4rem 0;
    background-color: var(--background-grey);
}

.testimonials-slider {
    margin-top: 3rem;
}

.testimonial {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cta-section {
    padding: 5rem 0;
    background-image: var(--gradient-primary);
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Page Styles */
.contact-page {
    padding: 4rem 0;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form-container {
    flex: 2;
    min-width: 300px;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--background-grey);
    border-radius: 50%;
}

.info-text h3 {
    margin-bottom: 0.5rem;
}

.info-note {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

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

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--background-grey);
    color: var(--text-primary);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.business-info {
    background-color: var(--background-grey);
    border-radius: var(--radius-md);
    padding: 1.5rem;
}

.business-info h3 {
    margin-bottom: 1rem;
}

.business-info p {
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.form-actions {
    display: flex;
    gap: 1rem;
}

.map-section {
    margin-bottom: 4rem;
}

.map-section h2 {
    margin-bottom: 1.5rem;
}

.map-container {
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    border: 0;
}

.faq-section h2 {
    margin-bottom: 2rem;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.faq-toggle {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: transform var(--transition-speed);
}

.faq-answer {
    margin-top: 1rem;
    display: none;
}

.faq-answer p {
    margin-bottom: 0;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    width: 90%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.modal-body {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.modal-body h2 {
    margin-bottom: 1rem;
}

.modal-body p {
    margin-bottom: 2rem;
}

/* Legal Page Styles */
.legal-page {
    padding: 4rem 0;
}

.legal-content {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

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

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

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    margin-top: 0;
    font-size: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1.5rem;
}

.policy-section h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.policy-section p {
    margin-bottom: 1rem;
}

.policy-section ul, .policy-section ol {
    margin-bottom: 1.5rem;
}

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

.refund-steps {
    background-color: var(--background-grey);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.refund-steps h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.refund-steps ol {
    margin-bottom: 0;
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 0.75rem;
}

.legal-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    align-self: flex-start;
}

.toc-container {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.toc-container h3 {
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
    font-size: 1.25rem;
}

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

.toc-list li {
    margin-bottom: 0.75rem;
}

.toc-list a {
    color: var(--text-primary);
}

.toc-list a:hover {
    color: var(--primary-color);
}

.legal-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.print-btn, .download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.legal-info-box {
    background-color: var(--background-light);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.legal-info-box h3 {
    margin-bottom: 1rem;
}

.legal-info-box p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

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

.imprint-section:last-child {
    margin-bottom: 0;
}

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

.imprint-section p {
    margin-bottom: 0.75rem;
}

.imprint-section p:last-child {
    margin-bottom: 0;
}

.company-info, .contact-info {
    margin-top: 0.75rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    .post-content {
        flex-direction: column;
    }
    
    .post-sidebar {
        min-width: 100%;
    }
    
    .about-intro-content {
        flex-direction: column;
    }
}

@media (max-width: 992px) {
    .nav-links {
        gap: 1.5rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-container {
        flex-direction: column;
    }
    
    .contact-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: var(--primary-color);
        padding: 1rem;
        gap: 1rem;
        box-shadow: var(--shadow-md);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav-previous, .nav-next {
        max-width: 100%;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-excerpt {
        font-size: 1.125rem;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar img {
        width: 50px;
        height: 50px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .info-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-icon {
        margin: 0 auto;
    }
    
    .info-text {
        text-align: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeIn {
    animation: fadeIn 0.5s ease-out forwards;
}
