:root {
    --primary-color: #1a3a4a;
    --secondary-color: #c9a227;
    --accent-color: #d4af37;
    --dark-color: #0d1f2d;
    --light-color: #f8f9fa;
    --text-color: #2c3e50;
    --text-muted: #6c757d;
    --border-color: #dee2e6;
    --card-bg: #ffffff;
    --gradient-primary: linear-gradient(135deg, #1a3a4a 0%, #0d1f2d 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(13,31,45,0.7) 0%, rgba(26,58,74,0.9) 100%);
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-subheading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background-color: #f5f6f8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 { font-size: 2.75rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.35rem; }

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
}

.navbar {
    padding: 0.75rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    filter: brightness(0) invert(1);
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.brand-accent {
    color: var(--secondary-color);
}

.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85) !important;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.dropdown-menu {
    background: #fff;
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem;
    color: var(--text-color);
}

.dropdown-item:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

.offcanvas {
    background: var(--gradient-primary);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 1.25rem;
}

.offcanvas-title {
    color: #fff;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas-title img {
    filter: brightness(0) invert(1);
}

.btn-close {
    filter: invert(1);
}

.offcanvas-body .nav-link {
    padding: 0.75rem 0 !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.offcanvas-body .dropdown-menu {
    background: rgba(255,255,255,0.1);
    border: none;
}

.offcanvas-body .dropdown-item {
    color: rgba(255,255,255,0.85);
}

.offcanvas-body .dropdown-item:hover {
    background: rgba(255,255,255,0.1);
    color: var(--secondary-color);
}

main {
    margin-top: 70px;
    min-height: calc(100vh - 70px - 300px);
}

.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 4rem 1rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-family: var(--font-subheading);
    font-size: 1.35rem;
    font-style: italic;
    color: rgba(255,255,255,0.9);
    margin-bottom: 0;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: #fff;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1rem auto 0;
}

.section-subtitle {
    font-family: var(--font-subheading);
    font-size: 1.15rem;
    color: var(--text-muted);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.card-article {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-article:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.card-article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-article:hover .card-article-image img {
    transform: scale(1.08);
}

.card-article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
}

.card-article-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-article-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card-article-title a {
    color: var(--dark-color);
}

.card-article-title a:hover {
    color: var(--primary-color);
}

.card-article-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    flex: 1;
}

.card-article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.card-article-meta i {
    color: var(--secondary-color);
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 992px) {
    .featured-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

.featured-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.featured-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.featured-card-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(13,31,45,0.95) 0%, rgba(13,31,45,0.3) 50%, transparent 100%);
    z-index: 1;
}

.featured-card-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    color: #fff;
}

.featured-card-category {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.4rem 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.featured-card-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.featured-card-title a {
    color: #fff;
}

.featured-card-title a:hover {
    color: var(--secondary-color);
}

.featured-card-meta {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.side-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.side-card {
    display: flex;
    gap: 1rem;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 1rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.side-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.side-card-image {
    width: 100px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.side-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-card-content {
    flex: 1;
}

.side-card-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.side-card-title a {
    color: var(--dark-color);
}

.side-card-title a:hover {
    color: var(--primary-color);
}

.side-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.intro-section {
    background: #fff;
    position: relative;
}

.intro-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .intro-content {
        grid-template-columns: 1fr 1fr;
    }
}

.intro-image {
    position: relative;
}

.intro-image-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image-main img {
    width: 100%;
    display: block;
}

.intro-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: var(--shadow-md);
}

.intro-image-accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-text h2 {
    margin-bottom: 1.5rem;
}

.intro-text p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.intro-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.intro-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.intro-feature-icon {
    width: 45px;
    height: 45px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.intro-feature-icon i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.intro-feature h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.intro-feature p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
}

.contact-hero {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/a/a8/Vienna_-_Vintage_camera_and_photos_-_0113.jpg/1280px-Vienna_-_Vintage_camera_and_photos_-_0113.jpg');
}

.contact-section {
    background: #f5f6f8;
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon i {
    font-size: 1.75rem;
    color: var(--secondary-color);
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

.faq-section {
    background: #fff;
    padding: 4rem 0;
}

.faq-title {
    font-family: var(--font-heading);
    text-align: center;
    margin-bottom: 2.5rem;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
}

.faq-question {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.faq-answer {
    color: var(--text-muted);
    line-height: 1.7;
}

.about-hero {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/8f/Photographer_with_Tripod.jpg/1280px-Photographer_with_Tripod.jpg');
}

.about-story {
    background: #fff;
}

.about-values {
    background: var(--light-color);
}

.value-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    height: 100%;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.value-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.article-hero {
    min-height: 450px;
}

.article-content {
    background: #fff;
    padding: 3rem 0;
}

.article-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.article-meta-item i {
    color: var(--secondary-color);
}

.article-body h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.article-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.article-image {
    margin: 2rem 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    display: block;
}

.article-image figcaption {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 0.75rem;
    background: var(--light-color);
}

.tip-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.tip-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.tip-box h4 i {
    color: var(--secondary-color);
}

.tip-box p {
    margin: 0;
    font-size: 0.95rem;
}

.related-articles {
    background: var(--light-color);
    padding: 4rem 0;
}

.related-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.policy-content {
    background: #fff;
    padding: 3rem 0;
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.policy-wrapper h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.policy-wrapper p,
.policy-wrapper ul {
    color: var(--text-muted);
    line-height: 1.8;
}

.policy-wrapper ul {
    padding-left: 1.5rem;
}

.policy-wrapper li {
    margin-bottom: 0.5rem;
}

.site-footer {
    background: var(--gradient-primary);
    color: rgba(255,255,255,0.8);
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-brand span {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #fff;
}

.footer-brand .accent {
    color: var(--secondary-color);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.7);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright,
.last-updated {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255,255,255,0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9998;
    padding: 1.5rem;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cookie-icon {
    width: 50px;
    height: 50px;
    background: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.cookie-text {
    flex: 1;
    min-width: 250px;
}

.cookie-text h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.cookie-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-cookie-accept {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-accept:hover {
    background: var(--dark-color);
}

.btn-cookie-reject {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-reject:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-primary-custom {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary-custom:hover {
    background: var(--dark-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.7rem 1.75rem;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: #fff;
}

@media (max-width: 991.98px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }
    h3 { font-size: 1.5rem; }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        min-height: 400px;
        background-attachment: scroll;
    }
    
    .intro-image-accent {
        width: 120px;
        height: 120px;
        bottom: -20px;
        right: -10px;
    }
    
    .intro-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .section {
        padding: 3.5rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .featured-card {
        min-height: 300px;
    }
    
    .featured-card-title {
        font-size: 1.35rem;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .footer-top {
        padding: 3rem 0 2rem;
    }
}
