/* 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: #1f2937;
    background-color: #ffffff;
}

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

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

h1 {
    font-size: 2.5rem;
    color: #111827;
}

h2 {
    font-size: 2rem;
    color: #1f2937;
}

h3 {
    font-size: 1.5rem;
    color: #374151;
}

h4 {
    font-size: 1.25rem;
    color: #4b5563;
}

p {
    margin-bottom: 1rem;
    color: #6b7280;
}

a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #2563eb;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #3b82f6;
    padding: 12px 24px;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

.btn-link {
    background: none;
    border: none;
    color: #6b7280;
    text-decoration: underline;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.3s ease;
}

.btn-link:hover {
    color: #3b82f6;
}

.btn-small {
    padding: 6px 12px;
    font-size: 0.875rem;
    border-radius: 6px;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
}

.logo-icon {
    fill: #3b82f6;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: #6b7280;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #3b82f6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3b82f6;
    transition: width 0.3s ease;
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #374151;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

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

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

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1f2937, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #f9fafb;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    fill: #3b82f6;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
}

/* Company Info Section */
.company-info {
    padding: 80px 0;
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

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

.info-card {
    text-align: center;
    padding: 40px 30px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
}

.info-icon {
    fill: #3b82f6;
    margin-bottom: 24px;
}

.info-card h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: #f9fafb;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    background: white;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table th {
    background: #f9fafb;
    font-weight: 600;
    color: #374151;
}

.company-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars {
    color: #fbbf24;
    font-size: 1.125rem;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
}

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

.review-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    fill: #6b7280;
    flex-shrink: 0;
}

.review-date {
    color: #9ca3af;
    font-size: 0.875rem;
}

.review-text {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.6;
}

.review-company {
    color: #3b82f6;
    font-weight: 500;
    font-size: 0.875rem;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f9fafb;
}

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

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.service-icon {
    fill: #3b82f6;
    margin-bottom: 24px;
}

.service-card h3 {
    margin-bottom: 16px;
    color: #1f2937;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.newsletter-icon {
    fill: white;
    margin-bottom: 24px;
}

.newsletter-text h2 {
    color: white;
    margin-bottom: 16px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.newsletter-form .form-group {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    background: white;
}

.newsletter-consent {
    margin-top: 16px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: white;
    border-color: white;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #3b82f6;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

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

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

.contact-icon {
    fill: #3b82f6;
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-item h4 {
    margin-bottom: 8px;
    color: #1f2937;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

.contact-form {
    background: #f9fafb;
    padding: 40px;
    border-radius: 16px;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    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: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    fill: #3b82f6;
}

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

.footer-section p {
    color: #d1d5db;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-contact li {
    color: #d1d5db;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #3b82f6;
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    padding: 24px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.cookie-icon {
    fill: #3b82f6;
    flex-shrink: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10001;
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    margin: 0;
    color: #1f2937;
}

.modal-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #1f2937;
}

.modal-body {
    padding: 30px;
}

.cookie-category {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.cookie-category:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cookie-category h4 {
    margin: 0;
    color: #1f2937;
}

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #3b82f6;
}

input:checked + .slider:before {
    transform: translateX(24px);
}

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Thank You Page */
.thank-you {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.thank-you-icon {
    fill: #10b981;
    margin-bottom: 32px;
}

.thank-you h1 {
    color: #1f2937;
    margin-bottom: 24px;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #6b7280;
    margin-bottom: 48px;
}

.thank-you-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 48px 0;
}

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

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

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

.legal-icon {
    fill: #3b82f6;
    margin-bottom: 24px;
}

.legal-subtitle {
    color: #6b7280;
    font-size: 1.125rem;
    margin-top: 16px;
}

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

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

.legal-section h2 {
    color: #1f2937;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.legal-section ol,
.legal-section ul {
    margin-left: 24px;
    margin-bottom: 24px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #4b5563;
}

.info-box,
.contact-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.info-box h3 {
    color: #0c4a6e;
    margin-bottom: 16px;
}

.definitions {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}

.definition-item {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.definition-item h4 {
    color: #1f2937;
    margin-bottom: 8px;
}

.purpose-item,
.retention-item {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.purpose-item h4,
.retention-item h4 {
    color: #1f2937;
    margin-bottom: 12px;
}

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

.right-item {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.right-icon {
    fill: #3b82f6;
    margin-bottom: 12px;
}

/* Blog Pages */
.blog-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

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

.blog-icon {
    fill: #3b82f6;
    margin-bottom: 24px;
}

.featured-article {
    padding: 80px 0;
    background: #f9fafb;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.featured-label {
    color: #3b82f6;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.featured-content h2 {
    margin: 16px 0 20px;
    color: #1f2937;
}

.blog-articles {
    padding: 80px 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    padding: 10px;;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 30px;
}

.article-content h3 {
    margin-bottom: 16px;
}

.article-content h3 a {
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-content h3 a:hover {
    color: #3b82f6;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 16px 0;
    font-size: 0.875rem;
    color: #6b7280;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item svg {
    fill: currentColor;
}

.article-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.tag {
    background: #e0f2fe;
    color: #0c4a6e;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Article Detail Pages */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.breadcrumb {
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #6b7280;
}

.breadcrumb a {
    color: #3b82f6;
    text-decoration: none;
}

.breadcrumb span {
    color: #d1d5db;
}

.article-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.article-hero-text h1 {
    color: #1f2937;
    margin-bottom: 20px;
}

.article-lead {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.article-hero-image {
    display: flex;
    justify-content: center;
}

.article-content {
    padding: 80px 0;
}

.article-body {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 48px;
}

.content-section h2 {
    color: #1f2937;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e5e7eb;
}

.content-section h3 {
    color: #374151;
    margin: 32px 0 16px;
}

.content-section h4 {
    color: #4b5563;
    margin: 24px 0 12px;
}

.highlight-box,
.tip-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.highlight-icon,
.tip-icon {
    fill: #0284c7;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Company Details */
.companies-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 24px 0;
}

.company-category {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.company-category h3 {
    color: #1f2937;
    margin-bottom: 16px;
}

.company-comparison {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 32px 0;
}

.company-detail {
    background: #f9fafb;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e5e7eb;
}

.company-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.company-header h3 {
    margin: 0;
    color: #1f2937;
}

.company-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.company-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.detail-label {
    color: #6b7280;
    font-weight: 500;
}

.detail-value {
    color: #1f2937;
    font-weight: 600;
}

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

.pros h4 {
    color: #059669;
    margin-bottom: 12px;
}

.cons h4 {
    color: #dc2626;
    margin-bottom: 12px;
}

.pros ul,
.cons ul {
    list-style: none;
    margin: 0;
}

.pros li::before {
    content: '✓';
    color: #059669;
    font-weight: bold;
    margin-right: 8px;
}

.cons li::before {
    content: '✗';
    color: #dc2626;
    font-weight: bold;
    margin-right: 8px;
}

/* Criteria and Methods */
.criteria-list,
.savings-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.criterion,
.method {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.criterion-icon,
.method-icon {
    fill: #3b82f6;
    flex-shrink: 0;
    margin-top: 4px;
}

.criterion-content,
.method-content {
    flex: 1;
}

.method-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 12px;
}

.savings-potential {
    background: #dcfce7;
    color: #166534;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
}

.method-tips {
    margin-top: 16px;
}

.method-tips strong {
    color: #1f2937;
    display: block;
    margin-bottom: 8px;
}

/* Calculations and Tables */
.savings-calculator,
.savings-calculator-detailed {
    background: #f0f9ff;
    border-radius: 16px;
    padding: 30px;
    margin: 24px 0;
}

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

.savings-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

.savings-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-top: 8px;
}

.calculation-table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.calculation-table th,
.calculation-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.calculation-table th {
    background: #f1f5f9;
    font-weight: 600;
    color: #374151;
}

.total-row {
    background: #f0f9ff;
    font-weight: 600;
}

.comparison-table-small {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.875rem;
}

.comparison-table-small th,
.comparison-table-small td {
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
}

.comparison-table-small th {
    background: #f9fafb;
}

.best-offer {
    background: #f0fdf4;
    color: #166534;
}

/* Investment Analysis */
.investment-analysis {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.investment-item {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

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

.investment-cost,
.investment-savings,
.payback-period {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e5e7eb;
}

.cost-label,
.savings-label,
.payback-label {
    color: #6b7280;
}

.cost-value,
.savings-value,
.payback-value {
    font-weight: 600;
    color: #1f2937;
}

/* Checklists and Action Plans */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.checklist-item:hover {
    background: #f9fafb;
}

.checklist-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.action-plan {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 24px 0;
}

.plan-phase {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #3b82f6;
}

.phase-result {
    background: #ecfdf5;
    color: #166534;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 600;
    text-align: center;
}

/* Related Articles */
.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #e5e7eb;
}

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

.related-card {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.related-card:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.related-card h3 {
    color: #1f2937;
    margin-bottom: 8px;
}

.related-card p {
    color: #6b7280;
    margin: 0;
    font-size: 0.875rem;
}

/* Cookie Policy Specific Styles */
.cookie-types {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 24px 0;
}

.cookie-type {
    background: #f9fafb;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e5e7eb;
}

.cookie-type-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-type-icon {
    fill: #3b82f6;
    margin-right: 12px;
}

.cookie-status {
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
}

.cookie-status.required {
    background: #fee2e2;
    color: #991b1b;
}

.cookie-status.optional {
    background: #dbeafe;
    color: #1e40af;
}

.cookie-details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.cookie-management {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 24px 0;
}

.management-option {
    background: #f9fafb;
    padding: 24px;
    border-radius: 12px;
}

.third-party-cookies {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.third-party-item {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.impact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 24px 0;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
}

.impact-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Trends and Market Analysis */
.market-overview {
    background: #f0f9ff;
    padding: 30px;
    border-radius: 16px;
    margin: 24px 0;
}

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

.indicator {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #bae6fd;
}

.indicator-icon {
    margin-bottom: 12px;
}

.indicator h4 {
    margin-bottom: 8px;
    color: #1f2937;
    font-size: 0.875rem;
}

.indicator-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0c4a6e;
    margin-bottom: 4px;
}

.indicator-change {
    font-size: 0.75rem;
    font-weight: 600;
}

.indicator-change.positive {
    color: #059669;
}

.indicator-change.negative {
    color: #dc2626;
}

.trends-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 32px 0;
}

.trend-item {
    background: #f9fafb;
    border-radius: 16px;
    padding: 30px;
    border-left: 4px solid #3b82f6;
}

.trend-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.trend-icon {
    flex-shrink: 0;
    margin-top: 4px;
}

.trend-details {
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.trend-impact {
    background: #ecfdf5;
    color: #166534;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 500;
}

/* Price Forecasts */
.price-forecasts {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    margin: 24px 0;
}

.forecast-chart {
    margin-bottom: 30px;
}

.chart-container {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 16px;
}

.quarterly-forecasts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quarter-forecast {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.quarter-forecast h4 {
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 1rem;
}

.forecast-range {
    font-size: 1.25rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 8px;
}

/* Regulatory Changes */
.regulatory-changes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 24px 0;
}

.regulation-item {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
}

.regulation-date {
    background: #dbeafe;
    color: #1e40af;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 16px;
}

.regulation-details {
    margin: 16px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.regulation-impact {
    background: #f0fdf4;
    color: #166534;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 500;
}

/* New Players */
.new-players {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 24px 0;
}

.player-category {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
}

.players-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.player-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.player-item h5 {
    color: #1f2937;
    margin-bottom: 8px;
}

.player-strategy {
    background: #e0f2fe;
    color: #0c4a6e;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
}

/* Consumer Impact */
.consumer-impact {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 24px 0;
}

.consumer-group {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid #3b82f6;
}

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

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

.impact-analysis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.impact-positive,
.impact-challenges {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.impact-positive {
    border-left: 4px solid #10b981;
}

.impact-challenges {
    border-left: 4px solid #f59e0b;
}

.impact-positive h5 {
    color: #065f46;
    margin-bottom: 12px;
}

.impact-challenges h5 {
    color: #92400e;
    margin-bottom: 12px;
}

/* Recommendations */
.recommendations-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 24px 0;
}

.recommendation-timeframe {
    background: #f9fafb;
    padding: 30px;
    border-radius: 16px;
}

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

.recommendation-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.recommendation-item h5 {
    color: #1f2937;
    margin-bottom: 12px;
}

/* Key Takeaways */
.key-takeaways {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 24px 0;
}

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
}

.takeaway-item.positive {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}

.takeaway-item.warning {
    background: #fef3c7;
    border: 1px solid #fde68a;
}

.takeaway-item.info {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
}

.takeaway-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.takeaway-item.positive .takeaway-icon {
    fill: #059669;
}

.takeaway-item.warning .takeaway-icon {
    fill: #d97706;
}

.takeaway-item.info .takeaway-icon {
    fill: #2563eb;
}

.final-advice,
.final-savings {
    background: #f0f9ff;
    padding: 30px;
    border-radius: 16px;
    margin: 32px 0;
    text-align: center;
    border: 1px solid #bae6fd;
}

.final-advice h3,
.final-savings h3 {
    color: #0c4a6e;
    margin-bottom: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        gap: 16px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .article-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .company-pros-cons {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .impact-analysis {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    .modal-content {
        margin: 20px;
        max-height: calc(100vh - 40px);
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .indicators-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
    }
    
    .quarterly-forecasts {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .recommendations-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .modal-buttons button {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-consent,
    .modal,
    .hero-buttons,
    .newsletter,
    .footer {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 20px 0;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    .article-content,
    .legal-page {
        padding: 20px 0;
    }
}

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

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        border: 2px solid #000;
        color: #fff;
    }
    
    .btn-secondary {
        background: #fff;
        border: 2px solid #000;
        color: #000;
    }
    
    .navbar {
        border-bottom: 2px solid #000;
    }
    
    .card,
    .info-card,
    .service-card,
    .review-card {
        border: 2px solid #000;
    }
}
