/* ===== CSS Variables ===== */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --accent: #38bdf8;
    --text: #0f172a;
    --text-light: #64748b;
    --bg: #f0f4ff;
    --bg-card: #ffffff;
    --bg-dark: #0f172a;
    --border: #cbd5e1;
    --shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 8px 30px rgba(15, 23, 42, 0.12);
    --radius: 12px;
    --max-width: 1140px;
    --font: Georgia, 'Times New Roman', Times, serif;
    --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--bg);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    line-height: 1.3;
    color: var(--text);
}

ul {
    list-style: none;
}

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

/* ===== Reading Progress Bar ===== */
.reading-progress,
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 1001;
    width: 0%;
    transition: width 0.1s linear;
}

/* ===== Header ===== */
.site-header {
    background: var(--bg-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo {
    font-family: var(--font);
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo span {
    color: var(--accent);
}

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

.nav-menu a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
}

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

.menu-toggle,
.mobile-hamburger,
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: #ffffff;
}

.menu-toggle svg,
.mobile-hamburger svg,
.hamburger svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.mobile-hamburger span,
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #ffffff;
    margin: 5px 0;
    transition: 0.3s;
}

/* ===== Hero Section ===== */
.hero {
    background: var(--bg-dark);
    padding: 4rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-content,
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 2.75rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: var(--font);
}

.hero p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-search {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.hero-search input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.5rem;
    border: 2px solid rgba(56, 189, 248, 0.3);
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    outline: none;
    transition: border-color 0.3s, background 0.3s;
    font-family: var(--font-sans);
}

.hero-search input::placeholder {
    color: #64748b;
}

.hero-search input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.1);
}

.hero-search .search-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    width: 18px;
    height: 18px;
}

.hero-search .search-btn {
    position: absolute;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: background 0.2s;
}

.hero-search .search-btn:hover {
    background: var(--primary-dark);
}

/* ===== Main Layout ===== */
.main-layout {
    max-width: var(--max-width);
    margin: 2.5rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2.5rem;
}

/* ===== Posts Grid ===== */
.section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text);
    font-family: var(--font);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.post-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.post-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

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

.post-card-image .category-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1;
}

.post-card-body,
.post-card-content {
    padding: 1.25rem;
}

.post-card .category-tag {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-bottom: 0.6rem;
    color: #ffffff;
    background: var(--primary);
}

.post-card h3,
.post-card h2,
.post-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font);
    font-weight: 700;
}

.post-card h3 a,
.post-card h2 a,
.post-card-title a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

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

.post-card .excerpt,
.post-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.post-card .post-meta,
.post-card-meta {
    font-size: 0.8rem;
    color: var(--text-light);
    display: flex;
    gap: 1rem;
}

/* ===== Category Tag Colors ===== */
.tag-security-tips { background: #2563eb; }
.tag-privacy { background: #7c3aed; }
.tag-reviews { background: #059669; }
.tag-network-security { background: #d97706; }
.tag-threat-defense { background: #dc2626; }
.tag-guides { background: #0891b2; }

/* ===== Sidebar ===== */
.sidebar {
    position: sticky;
    top: 84px;
    align-self: start;
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
    border-bottom: 3px solid var(--primary);
}

.sidebar-widget h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-family: var(--font);
    color: var(--text);
}

.newsletter-widget {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
    border-bottom: 3px solid var(--accent);
}

.newsletter-widget h3 {
    color: #ffffff;
}

.newsletter-widget p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-widget input[type="email"] {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    margin-bottom: 0.75rem;
    outline: none;
    font-family: var(--font-sans);
}

.newsletter-widget input[type="email"]::placeholder {
    color: #64748b;
}

.newsletter-widget input[type="email"]:focus {
    border-color: var(--accent);
}

.newsletter-widget .btn {
    width: 100%;
    padding: 0.75rem;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-sans);
}

.newsletter-widget .btn:hover {
    background: var(--primary-dark);
}

.newsletter-success {
    display: none;
    color: #4ade80;
    font-size: 0.9rem;
    text-align: center;
    padding: 0.5rem;
}

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

.categories-widget li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

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

.categories-widget li a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
}

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

.categories-widget li span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.popular-posts-widget ul {
    list-style: none;
}

.popular-posts-widget li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}

.popular-posts-widget li:last-child {
    border-bottom: none;
}

.popular-posts-widget li a {
    color: var(--text);
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s;
}

.popular-posts-widget li a:hover {
    color: var(--primary);
}

.ad-placeholder {
    background: var(--bg-card);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== Footer ===== */
.site-footer {
    background: var(--bg-dark);
    color: #94a3b8;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 3rem;
}

.footer-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-col h4,
.footer-column h4,
.footer-heading {
    color: #ffffff;
    font-family: var(--font);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-col p,
.footer-column p,
.footer-description {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col ul,
.footer-column ul,
.footer-links {
    list-style: none;
}

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

.footer-col ul a,
.footer-column ul a,
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul a:hover,
.footer-column ul a:hover,
.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
}

/* ===== Page Content (About, Contact, Legal) ===== */
.page-content {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.page-content h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text);
}

.page-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.page-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.page-content p {
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    list-style: disc;
}

.page-content ol li {
    list-style: decimal;
}

.page-content a {
    color: var(--primary);
}

.page-content a:hover {
    text-decoration: underline;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
    padding: 1rem 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
}

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

.breadcrumb span {
    margin: 0 0.4rem;
}

/* ===== Contact Form ===== */
.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: var(--font-sans);
}

.btn:hover {
    background: var(--primary-dark);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

/* ===== Post Single Page ===== */
.post-header {
    margin-bottom: 2rem;
}

.post-header .category-tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    color: #ffffff;
    background: var(--primary);
}

.post-header h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-header .post-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.post-featured-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.post-body h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text);
    font-family: var(--font);
}

.post-body h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: var(--font);
}

.post-body p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: var(--text);
}

.post-body ul,
.post-body ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.post-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    list-style: disc;
}

.post-body ol li {
    list-style: decimal;
}

.post-body blockquote {
    border-left: 4px solid var(--primary);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text);
}

.post-body .in-article-ad {
    border: 2px dashed var(--border);
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
    border-radius: var(--radius);
    color: var(--text-light);
    font-size: 0.85rem;
}

/* ===== Post Tags ===== */
.post-tags {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.post-tags span {
    font-weight: 600;
    margin-right: 0.5rem;
}

.post-tags a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg);
    color: var(--text-light);
    border-radius: 20px;
    font-size: 0.8rem;
    margin: 0.25rem;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

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

/* ===== Share Buttons ===== */
.share-bar {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.share-bar p {
    font-weight: 600;
    margin-bottom: 0.75rem;
}

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

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.85;
    color: #ffffff;
}

.share-btn.facebook { background: #1877f2; }
.share-btn.twitter { background: #1da1f2; }
.share-btn.linkedin { background: #0a66c2; }
.share-btn.whatsapp { background: #25d366; }
.share-btn.copy-link { background: #64748b; cursor: pointer; border: none; }

.copy-tooltip {
    display: none;
    font-size: 0.8rem;
    color: #4ade80;
    margin-left: 0.5rem;
}

/* ===== Team Section ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.team-card {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #ffffff;
    font-family: var(--font);
    font-weight: 700;
}

.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.team-card .role {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== Cookie Consent ===== */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    color: #cbd5e1;
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.cookie-inner,
.cookie-consent-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-inner p,
.cookie-consent-text {
    font-size: 0.9rem;
    flex: 1;
    min-width: 300px;
}

.cookie-inner a,
.cookie-consent-container a {
    color: var(--accent);
}

.cookie-buttons,
.cookie-consent-actions {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
    font-family: var(--font-sans);
}

.cookie-btn.accept,
.cookie-btn-accept {
    background: var(--primary);
    color: #ffffff;
}

.cookie-btn.accept:hover,
.cookie-btn-accept:hover {
    background: var(--primary-dark);
}

.cookie-btn.decline,
.cookie-btn-decline {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #475569;
}

.cookie-btn.decline:hover,
.cookie-btn-decline:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: background 0.2s, transform 0.2s;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ===== 404 Page ===== */
.error-page {
    text-align: center;
    padding: 4rem 1.5rem;
}

.error-page h1 {
    font-size: 6rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.error-page h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ===== Responsive ===== */
@media (max-width: 968px) {
    .main-layout {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    .menu-toggle,
    .mobile-hamburger,
    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 68px;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 1rem 1.5rem;
        gap: 0;
        border-top: 1px solid rgba(148, 163, 184, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 0.75rem 0;
        display: block;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

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

    .post-header h1 {
        font-size: 1.6rem;
    }

    .page-content {
        padding: 1.5rem;
    }

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

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

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

@media (max-width: 480px) {
    .header-inner,
    .header-container,
    .site-header > .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2.5rem 1rem;
    }

    .main-layout {
        padding: 0 1rem;
    }

    .cookie-inner,
    .cookie-consent-container {
        flex-direction: column;
        text-align: center;
    }
}
