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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    margin-bottom: 20px;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    color: white;
}

.btn-secondary {
    background-color: #95a5a6;
    color: white;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background-color: #3498db;
    color: white;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #2c3e50;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #3498db;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #3498db;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-graphic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    max-width: 600px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 1.1rem;
    color: #5a6c7d;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    text-align: center;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat svg {
    margin-bottom: 15px;
}

.stat h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 5px;
}

.stat p {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #5a6c7d;
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 30px 20px;
}

.blog-card h3 {
    padding: 0 30px;
    margin-bottom: 15px;
}

.blog-card h3 a {
    color: #2c3e50;
}

.blog-card h3 a:hover {
    color: #3498db;
}

.blog-excerpt {
    padding: 0 30px;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.blog-meta {
    padding: 0 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.blog-date {
    font-weight: 500;
}

.blog-category {
    background-color: #ecf0f1;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.review-card blockquote {
    font-style: italic;
    margin-bottom: 20px;
    color: #5a6c7d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.review-card cite {
    font-weight: 600;
    color: #2c3e50;
    font-style: normal;
}

/* Newsletter Section */
.newsletter-wrapper {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 15px;
    padding: 60px 40px;
    text-align: center;
    color: white;
}

.newsletter-icon {
    margin-bottom: 20px;
}

.newsletter-content h2 {
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.newsletter-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.form-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.form-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.form-checkbox {
    text-align: left;
}

.form-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.form-checkbox input[type="checkbox"] {
    margin: 0;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item h4 {
    margin-bottom: 8px;
    color: #2c3e50;
}

.contact-item p {
    color: #5a6c7d;
    margin: 0;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
    display: block;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 20px;
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand span {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-section li {
    margin-bottom: 10px;
}

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

.footer-section a:hover,
.footer-section a.active {
    color: #3498db;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cookie-icon {
    flex-shrink: 0;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Cookie Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-content h3 {
    margin-bottom: 30px;
    color: #2c3e50;
}

.cookie-category {
    margin-bottom: 25px;
}

.cookie-category label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
}

.cookie-category input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}

.cookie-category span {
    font-weight: normal;
    color: #5a6c7d;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.page-hero-icon {
    margin-bottom: 30px;
}

/* Blog Page */
.blog-main {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.blog-articles {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-article-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-article-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.article-header {
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.article-icon {
    flex-shrink: 0;
}

.article-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.article-date {
    font-weight: 500;
}

.article-category {
    background-color: #ecf0f1;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
}

.blog-article-card h2 {
    margin-bottom: 20px;
}

.blog-article-card h2 a {
    color: #2c3e50;
}

.blog-article-card h2 a:hover {
    color: #3498db;
}

.article-excerpt {
    color: #5a6c7d;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.article-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tag {
    background-color: #ecf0f1;
    color: #7f8c8d;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.article-link {
    color: #3498db;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.article-link:hover {
    color: #2980b9;
}

/* Blog Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 1.2rem;
}

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

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #5a6c7d;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #3498db;
}

.newsletter-widget {
    text-align: center;
}

.newsletter-widget svg {
    margin-bottom: 15px;
}

.newsletter-widget p {
    color: #5a6c7d;
    margin-bottom: 20px;
}

.newsletter-sidebar-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-sidebar-form input {
    padding: 10px 12px;
    border: 2px solid #ecf0f1;
    border-radius: 5px;
    font-size: 0.9rem;
}

.contact-widget {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a6c7d;
}

/* Article Page */
.article-page {
    padding-top: 80px;
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.breadcrumb a {
    color: #3498db;
}

.article-header {
    margin-bottom: 50px;
}

.article-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #7f8c8d;
}

.article-header h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.article-lead {
    font-size: 1.3rem;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
}

.article-featured-image {
    margin-bottom: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-body h2 {
    font-size: 2rem;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.article-body h3 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.article-body h4 {
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.article-body p {
    margin-bottom: 25px;
    color: #444444;
}

.article-body ul, .article-body ol {
    margin-bottom: 25px;
    padding-left: 25px;
}

.article-body li {
    margin-bottom: 8px;
    color: #444444;
}

.article-highlight {
    background: linear-gradient(135deg, #ecf0f1, #f8f9fa);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 5px solid #3498db;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.article-highlight blockquote {
    margin: 0;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #2c3e50;
}

.article-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #ecf0f1;
}

.stat-item svg {
    margin-bottom: 15px;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.stat-item span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.pros, .cons {
    padding: 30px;
    border-radius: 10px;
}

.pros {
    background-color: #d5f4e6;
    border-left: 5px solid #27ae60;
}

.cons {
    background-color: #ffeaa7;
    border-left: 5px solid #f39c12;
}

.pros h4 {
    color: #27ae60;
    margin-bottom: 15px;
}

.cons h4 {
    color: #e67e22;
    margin-bottom: 15px;
}

.digital-formats, .comparison-table, .international-comparison, .digital-challenges {
    margin: 40px 0;
}

.format-grid, .comparison-grid, .challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.format-item, .comparison-item, .challenge-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.format-item svg, .challenge-item svg {
    margin-bottom: 15px;
}

.format-item h5, .comparison-item h5, .challenge-item h5 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.format-item p, .comparison-item p, .challenge-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.article-tags h4 {
    margin-bottom: 15px;
    margin-top: 40px;
}

.article-tags .tag {
    margin-right: 8px;
    margin-bottom: 8px;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.author-info {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.author-info svg {
    margin-bottom: 15px;
}

.author-details h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.author-details p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.related-articles {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.related-articles h4 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.related-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.related-item a {
    color: #5a6c7d;
    font-size: 0.95rem;
}

.related-item a:hover {
    color: #3498db;
}

.share-article {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.share-article h4 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    font-size: 0.9rem;
    transition: opacity 0.3s ease;
}

.share-btn:hover {
    opacity: 0.9;
}

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

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

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

/* Article Navigation */
.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid #ecf0f1;
}

.nav-back, .nav-next {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #3498db;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-back:hover, .nav-next:hover {
    color: #2980b9;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-content h1 {
    color: #27ae60;
    margin-bottom: 20px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thank-you-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a6c7d;
}

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.additional-content {
    margin-top: 80px;
}

.additional-content h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.suggestion-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.suggestion-card svg {
    margin-bottom: 20px;
}

.suggestion-card h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.suggestion-card p {
    color: #5a6c7d;
    margin-bottom: 20px;
}

.suggestion-link {
    color: #3498db;
    font-weight: 500;
}

.suggestion-link:hover {
    color: #2980b9;
}

/* Legal Pages */
.legal-page {
    padding: 120px 0 80px;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.legal-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid #ecf0f1;
}

.legal-header svg {
    margin-bottom: 20px;
}

.legal-header h1 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.legal-updated {
    color: #7f8c8d;
    font-style: italic;
}

.legal-toc {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.legal-toc h3 {
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.legal-toc li {
    margin-bottom: 10px;
}

.legal-toc a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-toc a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.legal-section h3 {
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-section h4 {
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 10px;
}

.legal-section p {
    color: #444444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-section ul, .legal-section ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #444444;
    line-height: 1.6;
}

.contact-info-legal {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 5px solid #3498db;
}

.contact-info-legal p {
    margin-bottom: 15px;
}

.contact-info-legal p:last-child {
    margin-bottom: 0;
}

.legal-basis-grid, .services-grid-legal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.basis-item, .service-item-legal {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.basis-item h4, .service-item-legal h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.basis-item p, .service-item-legal p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 5px 0;
}

.service-item-legal svg {
    margin-bottom: 10px;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.right-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.right-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.right-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.right-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.measure-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 5px solid #27ae60;
}

.measure-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.measure-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.measure-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.update-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 5px solid #3498db;
}

.update-info p {
    margin: 0;
    color: #2c3e50;
    font-weight: 500;
}

.modification-process {
    margin: 25px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.step {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.step-number {
    background-color: #3498db;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step p {
    margin: 0;
    color: #2c3e50;
    font-size: 0.95rem;
}

.liability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.liability-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border-top: 5px solid #e74c3c;
}

.liability-item svg {
    margin-bottom: 15px;
}

.liability-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.liability-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.privacy-highlights, .contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.privacy-item, .contact-method {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.privacy-item h4, .contact-method h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.privacy-item p, .contact-method p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.law-info {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #2c3e50;
}

.law-info h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.law-info p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

/* Cookie Policy Specific Styles */
.cookie-explanation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.explanation-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

.explanation-item svg {
    margin-bottom: 15px;
}

.explanation-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.explanation-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.reason-item {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-left: 5px solid #3498db;
}

.reason-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.reason-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.reason-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin: 0;
}

.cookie-categories {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 30px 0;
}

.category-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.category-header h3 {
    margin: 0;
    color: #2c3e50;
    flex: 1;
}

.cookie-status {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.cookie-status.required {
    background-color: #e74c3c;
    color: white;
}

.cookie-status.optional {
    background-color: #f39c12;
    color: white;
}

.category-card h4 {
    color: #2c3e50;
    margin: 20px 0 10px 0;
}

.category-card ul {
    margin: 10px 0 20px 20px;
}

.category-card li {
    color: #5a6c7d;
    margin-bottom: 5px;
}

.cookie-table {
    margin: 25px 0;
    overflow-x: auto;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #ecf0f1;
}

.cookie-table th {
    background-color: #3498db;
    color: white;
    font-weight: 600;
}

.cookie-table code {
    background-color: #f8f9fa;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    color: #e74c3c;
}

.third-party-services {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin: 25px 0;
}

.service-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.service-header h4 {
    margin: 0;
    color: #2c3e50;
}

.service-card p {
    margin-bottom: 10px;
    color: #5a6c7d;
    font-size: 0.95rem;
}

.service-card strong {
    color: #2c3e50;
}

.service-card a {
    color: #3498db;
}

.cookie-management-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.management-option {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border-left: 5px solid #3498db;
}

.management-option svg {
    margin-bottom: 15px;
}

.management-option h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.management-option p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.browser-instructions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 25px 0;
}

.browser-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.browser-item h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.browser-item p {
    margin: 0;
    color: #5a6c7d;
    font-size: 0.95rem;
    font-family: 'Courier New', monospace;
}

.warning-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #fff3cd;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #f39c12;
    margin: 25px 0;
}

.warning-box h4 {
    margin-bottom: 10px;
    color: #856404;
}

.warning-box p {
    margin: 0;
    color: #856404;
    font-size: 0.95rem;
}

.consent-process {
    margin: 25px 0;
}

.consent-process h3 {
    color: #2c3e50;
    margin-bottom: 25px;
}

.consent-process .process-steps {
    gap: 20px;
}

.consent-process .step {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #27ae60;
}

.consent-process .step h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.consent-process .step p {
    margin: 0;
    color: #5a6c7d;
    font-size: 0.95rem;
}

.update-notification {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #e3f2fd;
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 5px solid #3498db;
}

.update-notification h4 {
    margin-bottom: 10px;
    color: #2c3e50;
}

.update-notification p {
    margin: 0;
    color: #5a6c7d;
    font-size: 0.95rem;
}

/* Legal page specific elements */
.legal-spheres {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.legal-spheres li {
    background-color: #f8f9fa;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.legal-spheres li strong {
    color: #2c3e50;
}

.legal-definitions {
    margin: 30px 0;
}

.definition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.definition-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
}

.definition-item h5 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1rem;
}

.definition-item p {
    color: #5a6c7d;
    font-size: 0.9rem;
    margin: 0;
}

.court-cases {
    margin: 30px 0;
}

.case-item {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 5px solid #3498db;
}

.case-item h5 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.case-item p {
    color: #5a6c7d;
    margin: 0;
    font-size: 0.95rem;
}

.prevention-measures {
    list-style: none;
    padding: 0;
}

.prevention-measures li {
    background-color: #d5f4e6;
    padding: 12px;
    margin-bottom: 8px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    color: #2c3e50;
}

.prevention-measures li:before {
    content: "✓ ";
    color: #27ae60;
    font-weight: bold;
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        flex-direction: row;
        justify-content: space-around;
    }

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

    .article-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .blog-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section {
        padding: 60px 0;
    }

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

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

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

    .newsletter-wrapper {
        padding: 40px 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .thank-you-details {
        flex-direction: column;
        gap: 20px;
    }

    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }

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

    .legal-content {
        padding: 30px 20px;
    }

    .article-header h1 {
        font-size: 2.5rem;
    }

    .article-lead {
        font-size: 1.1rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 15px;
    }

    .article-navigation {
        flex-direction: column;
        gap: 20px;
    }

    .about-stats {
        flex-direction: column;
    }

    .article-stats {
        grid-template-columns: 1fr;
    }

    .format-grid,
    .comparison-grid,
    .challenge-grid {
        grid-template-columns: 1fr;
    }

    .legal-basis-grid,
    .services-grid-legal,
    .rights-grid,
    .security-measures,
    .process-steps,
    .liability-grid,
    .privacy-highlights,
    .contact-methods {
        grid-template-columns: 1fr;
    }

    .cookie-explanation,
    .reasons-grid,
    .cookie-management-options,
    .definition-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

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

    .article-header h1 {
        font-size: 2rem;
    }

    .newsletter-wrapper {
        padding: 30px 15px;
    }

    .service-card,
    .blog-card {
        margin: 0 10px;
    }

    .legal-content {
        padding: 20px 15px;
    }

    .modal-content {
        padding: 20px;
        margin: 20px;
    }

    .cookie-table {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}

/* Animation and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.blog-card,
.review-card,
.suggestion-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .modal,
    .nav-toggle,
    .share-article,
    .article-navigation {
        display: none;
    }

    .article-page,
    .legal-page {
        padding-top: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

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

    .legal-content {
        padding: 20px;
        box-shadow: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }

    .service-card,
    .blog-card,
    .review-card {
        border: 2px solid #2c3e50;
    }

    .cookie-banner {
        border-top: 3px solid #ffffff;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Styles for Accessibility */
.btn:focus,
.nav-menu a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Skip Link for Screen Readers */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #3498db;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 10000;
}

.skip-link:focus {
    top: 6px;
}
