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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #334155;
    background-color: #ffffff;
}

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

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

h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

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

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

a:hover {
    color: #1e40af;
}

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

.btn-primary {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.btn-primary:hover {
    background-color: #1e40af;
    border-color: #1e40af;
    color: white;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #64748b;
    color: white;
    border-color: #64748b;
}

.btn-secondary:hover {
    background-color: #475569;
    border-color: #475569;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #3b82f6;
    border-color: #3b82f6;
}

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

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

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

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e293b;
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: #475569;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: white;
    padding: 1rem 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-text h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-text p {
    color: #cbd5e1;
    margin-bottom: 0;
}

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

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

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.close {
    font-size: 2rem;
    cursor: pointer;
    color: #64748b;
}

.close:hover {
    color: #1e293b;
}

.cookie-category {
    margin-bottom: 1.5rem;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.cookie-category h3 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cookie-category p {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-category input[type="checkbox"] {
    margin-right: 0.5rem;
}

.modal-footer {
    text-align: center;
    margin-top: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 6rem 0 4rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 2rem;
    max-width: 600px;
}

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

/* Sections */
section {
    padding: 4rem 0;
}

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

.section-icon {
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

/* Services Section */
.services {
    background-color: #f8fafc;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
}

.service-card li {
    padding: 0.5rem 0;
    color: #475569;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Features Section */
.features {
    background-color: #f8fafc;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-item h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-item p {
    color: #64748b;
}

/* Testimonials */
.testimonials {
    background-color: #f1f5f9;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #475569;
}

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

.author-info strong {
    display: block;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: #64748b;
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter {
    background-color: #1e293b;
    color: white;
}

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

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

.newsletter-text p {
    color: #cbd5e1;
}

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

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.input-group input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
}

.newsletter-disclaimer {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background-color: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #64748b;
    margin-bottom: 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: border-color 0.3s ease;
}

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

/* Footer */
.footer {
    background-color: #1e293b;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.brand-logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-brand p {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

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

.social-links a {
    color: #94a3b8;
    transition: color 0.3s ease;
}

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.link-column a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #94a3b8;
}

/* Blog Styles */
.blog-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 8rem 0 4rem;
    text-align: center;
}

.blog-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

.blog-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.blog-card-icon {
    padding: 2rem 2rem 0;
}

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

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #64748b;
}

.blog-date {
    color: #64748b;
}

.blog-category {
    background-color: #e0e7ff;
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

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

.blog-card h2 a {
    color: #1e293b;
}

.blog-card h2 a:hover {
    color: #3b82f6;
}

.blog-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

.read-more {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #1e40af;
}

/* Article Page Styles */
.article-page {
    padding-top: 6rem;
}

.article-header {
    text-align: center;
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

.article-category {
    background-color: #e0e7ff;
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 500;
}

.reading-time {
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
}

.article-lead {
    font-size: 1.25rem;
    color: #475569;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.article-visual {
    margin-bottom: 2rem;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-content section {
    padding: 2rem 0;
}

.article-content h2 {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

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

.highlight-box {
    background-color: #f0f9ff;
    border: 2px solid #bae6fd;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.highlight-box h3 {
    color: #1e40af;
    margin-bottom: 1rem;
}

.highlight-box ul {
    list-style: none;
    padding-left: 0;
}

.highlight-box li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-weight: bold;
}

.article-footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem 20px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.tag {
    background-color: #e2e8f0;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
}

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

.share-btn {
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.related-articles {
    max-width: 1200px;
    margin: 4rem auto 0;
    padding: 3rem 20px 0;
    border-top: 2px solid #e2e8f0;
}

.related-articles h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.related-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

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

.related-card h3 a {
    color: #1e293b;
}

.related-card h3 a:hover {
    color: #3b82f6;
}

.related-card p {
    color: #64748b;
    margin-bottom: 0;
}

/* Legal Pages */
.legal-page {
    padding: 6rem 0 4rem;
}

.legal-header {
    text-align: center;
    padding: 2rem 0 4rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

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

.legal-content h2 {
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.company-info, .contact-info {
    background-color: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0 4rem;
    text-align: center;
}

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

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

.thank-you-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.resources {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.resources h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.resource-card svg {
    margin-bottom: 1rem;
}

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

.resource-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
}

/* Article-specific styles */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.strategy-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    transition: border-color 0.3s ease;
}

.strategy-card:hover {
    border-color: #3b82f6;
}

.strategy-icon {
    margin-bottom: 1.5rem;
}

.strategy-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.strategy-card p {
    color: #64748b;
}

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

.kpi-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.kpi-card h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.kpi-card ul {
    list-style: none;
    padding: 0;
}

.kpi-card li {
    padding: 0.25rem 0;
    color: #475569;
}

.action-steps {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.action-steps h3 {
    color: #92400e;
    margin-bottom: 1rem;
}

.action-steps ol {
    padding-left: 1.5rem;
}

.action-steps li {
    margin-bottom: 0.75rem;
    color: #78350f;
}

.cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 2rem 0;
}

.cta-section p {
    color: #dbeafe;
    margin-bottom: 1.5rem;
}

.cta-section .btn {
    background-color: white;
    color: #3b82f6;
    border-color: white;
}

.cta-section .btn:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

/* Cookie Settings Section */
.cookie-settings-section {
    background: #f0f9ff;
    border: 2px solid #0ea5e9;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.cookie-settings-section h2 {
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.cookie-settings-section p {
    color: #075985;
    margin-bottom: 1.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .article-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .strategy-grid, .kpi-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card, .feature-item, .testimonial-card {
        padding: 1.5rem;
    }
    
    .blog-card-content {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .blog-card-icon {
        padding: 1.5rem 1.5rem 0;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 20px;
    }
    
    .article-content, .legal-content {
        padding: 0 15px;
    }
}

/* Print Styles */
@media print {
    .header, .cookie-banner, .cookie-modal, .footer {
        display: none !important;
    }
    
    .article-page {
        padding-top: 0;
    }
    
    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
    
    a {
        text-decoration: underline;
    }
    
    .btn {
        border: 1px solid black;
        padding: 0.5rem;
        display: inline-block;
    }
}

/* Additional Article Styles */
.automation-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 2px solid #e0e7ff;
}

.stat-item strong {
    display: block;
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat-item span {
    color: #64748b;
    font-size: 0.9rem;
}

.process-analysis {
    margin: 2rem 0;
}

.process-category {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.process-category.high-potential {
    border: 2px solid #10b981;
}

.process-category.medium-potential {
    border: 2px solid #f59e0b;
}

.process-category.low-potential {
    border: 2px solid #64748b;
}

.category-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.high-potential .category-header {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
}

.medium-potential .category-header {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.low-potential .category-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.potential-indicator {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.potential-indicator.high {
    background-color: #10b981;
    color: white;
}

.potential-indicator.medium {
    background-color: #f59e0b;
    color: white;
}

.potential-indicator.low {
    background-color: #64748b;
    color: white;
}

.process-list {
    padding: 0 1.5rem 1.5rem;
    background: white;
}

.process-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.process-item h4 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.process-item ul {
    list-style: none;
    padding: 0;
}

.process-item li {
    margin-bottom: 0.5rem;
    padding-left: 0;
    color: #475569;
}

.process-item li strong {
    color: #1e293b;
}

/* Technology Categories */
.technology-categories {
    margin: 2rem 0;
}

.tech-category {
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tech-header {
    padding: 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.tech-icon {
    margin-bottom: 1rem;
}

.tech-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.rating-stars {
    color: #f59e0b;
    font-size: 1.1rem;
}

.rating-label {
    color: #64748b;
    font-size: 0.9rem;
}

.tech-content {
    padding: 2rem;
}

.tech-content p {
    margin-bottom: 1.5rem;
}

.tech-applications, .ai-capabilities, .workflow-benefits {
    margin: 1.5rem 0;
}

.tech-applications h4, .ai-capabilities h4, .workflow-benefits h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.vendor-comparison, .ai-vendors {
    margin: 2rem 0;
}

.vendor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.vendor-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.vendor-card strong {
    display: block;
    color: #1e293b;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.vendor-card p {
    color: #64748b;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.vendor-price {
    font-size: 0.875rem;
    color: #059669;
    font-weight: 600;
}

/* Implementation Roadmap */
.implementation-roadmap {
    margin: 2rem 0;
}

.roadmap-phase {
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.phase-number {
    width: 50px;
    height: 50px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.phase-duration {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
}

.phase-header h3 {
    color: #1e293b;
    margin-bottom: 0;
}

.phase-content {
    padding: 2rem;
}

.phase-objectives, .phase-deliverables {
    margin-bottom: 2rem;
}

.phase-checklist {
    margin-top: 1.5rem;
}

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

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
}

.checklist-item input[type="checkbox"] {
    margin: 0;
    cursor: pointer;
}

.checklist-item label {
    cursor: pointer;
    color: #475569;
    font-size: 0.9rem;
}

/* AI Applications */
.ai-applications {
    margin: 2rem 0;
}

.ai-card {
    background: white;
    border: 2px solid #e0f2fe;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: border-color 0.3s ease;
}

.ai-card:hover {
    border-color: #0ea5e9;
}

.ai-icon {
    margin-bottom: 1rem;
}

.ai-card h3 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.ai-example {
    background: #f0f9ff;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    border-left: 4px solid #0ea5e9;
}

.ai-example strong {
    color: #0c4a6e;
}

/* Pitfalls Section */
.pitfalls-section {
    margin: 2rem 0;
}

.pitfall-item {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.pitfall-item.critical {
    border: 2px solid #ef4444;
}

.pitfall-item.high {
    border: 2px solid #f97316;
}

.pitfall-item.medium {
    border: 2px solid #eab308;
}

.pitfall-item.low {
    border: 2px solid #22c55e;
}

.pitfall-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pitfall-item.critical .pitfall-header {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.pitfall-item.high .pitfall-header {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

.pitfall-item.medium .pitfall-header {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
}

.pitfall-item.low .pitfall-header {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.severity-indicator {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.875rem;
}

.severity-indicator.critical {
    background-color: #ef4444;
    color: white;
}

.severity-indicator.high {
    background-color: #f97316;
    color: white;
}

.severity-indicator.medium {
    background-color: #eab308;
    color: white;
}

.severity-indicator.low {
    background-color: #22c55e;
    color: white;
}

.pitfall-content {
    padding: 2rem;
    background: white;
}

.pitfall-description, .pitfall-consequence, .pitfall-solution {
    margin-bottom: 1.5rem;
}

.pitfall-description strong, .pitfall-consequence strong, .pitfall-solution strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.5rem;
}

/* Future Trends */
.future-trends {
    margin: 2rem 0;
}

.timeline-period {
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.timeline-period h3 {
    padding: 1.5rem;
    margin-bottom: 0;
    color: white;
}

.timeline-period.near-term h3 {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.timeline-period.medium-term h3 {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.timeline-period.long-term h3 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.trends-list {
    padding: 2rem;
}

.trend-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.trend-item h4 {
    color: #1e293b;
    margin-bottom: 1rem;
}

.trend-impact, .trend-example, .trend-vision {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 6px;
    font-size: 0.9rem;
}

.trend-impact strong, .trend-example strong, .trend-vision strong {
    color: #1e40af;
}

/* Sustainability-specific styles */
.sustainability-box {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
}

.sustainability-box h3 {
    color: #065f46;
}

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

.advantage-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-3px);
}

.advantage-icon {
    margin-bottom: 1rem;
}

.pillars-section {
    margin: 2rem 0;
}

.pillar {
    margin-bottom: 3rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

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

.pillar-header h3 {
    color: #065f46;
    margin-bottom: 0;
}

.pillar-details {
    padding: 2rem;
}

.pillar-details h4 {
    color: #1e293b;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.case-study, .savings-highlight, .feature-highlight {
    background: #f0f9ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #0ea5e9;
}

.case-study strong, .savings-highlight strong, .feature-highlight strong {
    color: #0c4a6e;
}

/* ROI Analysis */
.roi-analysis {
    margin: 2rem 0;
}

.roi-category {
    margin-bottom: 2rem;
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.roi-category h3 {
    color: #1e293b;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.roi-item {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.roi-item strong {
    color: #1e293b;
    display: block;
    margin-bottom: 0.25rem;
}

.case-study-section {
    background: #fef3c7;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid #f59e0b;
}

.case-study-section h3 {
    color: #92400e;
    margin-bottom: 1rem;
}

.case-study-section p {
    color: #78350f;
    margin-bottom: 1rem;
}

.case-study-section ul {
    list-style: none;
    padding: 0;
}

.case-study-section li {
    padding: 0.5rem 0;
    color: #78350f;
    position: relative;
    padding-left: 1.5rem;
}

.case-study-section li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #f59e0b;
    font-weight: bold;
}

/* Implementation Timeline */
.implementation-timeline {
    margin: 2rem 0;
}

.timeline-phase {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-phase:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 100%;
    width: 2px;
    height: 3rem;
    background: #e2e8f0;
}

.phase-header {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.phase-number {
    background: #10b981;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.sustainability-cta {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.future-outlook {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #0ea5e9;
    margin: 2rem 0;
}

.future-outlook h3 {
    color: #0c4a6e;
    margin-bottom: 1rem;
}

.future-outlook ul {
    list-style: none;
    padding: 0;
}

.future-outlook li {
    padding: 0.5rem 0;
    color: #075985;
    position: relative;
    padding-left: 1.5rem;
}

.future-outlook li::before {
    content: '🔮';
    position: absolute;
    left: 0;
}

.checklist {
    margin-top: 1rem;
}

.action-checklist .checklist-item {
    margin-bottom: 0.75rem;
}
