@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&family=Open+Sans:wght@300;400;600&display=swap');

:root {
    --primary-color: #D4451B;
    --secondary-color: #F5A623;
    --accent-color: #2C5530;
    --dark-color: #1A1A1A;
    --light-color: #FDF8F3;
    --warm-gray: #4A4238;
    --border-color: #E8E0D8;
    --gradient-warm: linear-gradient(135deg, #D4451B 0%, #F5A623 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #2C2620 100%);
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-strong: 0 15px 50px rgba(0,0,0,0.15);
    --font-heading: 'Playfair Display', serif;
    --font-subheading: 'Lora', serif;
    --font-body: 'Open Sans', sans-serif;
    --font-accent: 'Poppins', sans-serif;
}

* {
    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(--warm-gray);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    color: white;
    font-family: var(--font-accent);
    font-size: 14px;
    margin-top: 15px;
    letter-spacing: 2px;
}

header {
    background: var(--gradient-dark);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-medium);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 69, 27, 0.3);
}

.logo-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-accent);
    font-size: 10px;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-desktop a {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding: 8px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: white;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.burger-menu:hover {
    background: rgba(255,255,255,0.15);
}

.burger-line {
    width: 22px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: var(--dark-color);
    padding: 30px;
    transform: translateY(-120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: var(--shadow-strong);
    max-height: calc(100vh - 75px);
    overflow-y: auto;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-section {
    margin-bottom: 25px;
}

.mobile-nav-title {
    font-family: var(--font-accent);
    font-size: 11px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    display: block;
    font-family: var(--font-accent);
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mobile-nav a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

main {
    margin-top: 75px;
    min-height: calc(100vh - 75px);
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.4) 0%, rgba(26,26,26,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 60px 40px;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 30px;
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--secondary-color);
}

.hero-description {
    font-family: var(--font-subheading);
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    margin-bottom: 35px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-warm);
    color: white;
    box-shadow: 0 4px 20px rgba(212, 69, 27, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 69, 27, 0.45);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.3);
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.section-description {
    font-family: var(--font-subheading);
    font-size: 18px;
    color: var(--warm-gray);
    max-width: 700px;
    margin: 0 auto;
}

.bg-dark {
    background: var(--gradient-dark);
}

.bg-dark .section-badge {
    color: var(--secondary-color);
}

.bg-dark .section-title {
    color: white;
}

.bg-dark .section-description {
    color: rgba(255,255,255,0.7);
}

.articles-grid {
    display: grid;
    gap: 30px;
}

.articles-grid.layout-featured {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 1fr);
}

.articles-grid.layout-featured .article-card:first-child {
    grid-row: span 2;
}

.articles-grid.layout-three {
    grid-template-columns: repeat(3, 1fr);
}

.article-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.article-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.articles-grid.layout-featured .article-card:first-child .article-card-image {
    height: 100%;
    min-height: 400px;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-card-image img {
    transform: scale(1.08);
}

.article-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    background: var(--primary-color);
    border-radius: 20px;
}

.article-card-content {
    padding: 25px;
}

.articles-grid.layout-featured .article-card:first-child .article-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.9) 100%);
    padding: 40px 30px;
}

.articles-grid.layout-featured .article-card:first-child .article-card-title,
.articles-grid.layout-featured .article-card:first-child .article-card-excerpt,
.articles-grid.layout-featured .article-card:first-child .article-card-meta {
    color: white;
}

.article-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.article-card:hover .article-card-title {
    color: var(--primary-color);
}

.article-card-excerpt {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-accent);
    font-size: 13px;
    color: #888;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--gradient-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(212, 69, 27, 0.3);
}

.feature-icon img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

.feature-title {
    font-family: var(--font-accent);
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.content-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gradient-warm);
    color: white;
    font-family: var(--font-accent);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
}

.content-text h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.content-text p {
    font-size: 16px;
    color: var(--warm-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.content-list {
    list-style: none;
    margin-bottom: 30px;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: var(--warm-gray);
}

.content-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.page-header {
    background: var(--gradient-dark);
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    font-family: var(--font-subheading);
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    font-family: var(--font-accent);
    font-size: 13px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

.breadcrumb span {
    color: rgba(255,255,255,0.3);
}

.breadcrumb-current {
    color: var(--secondary-color) !important;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--warm-gray);
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 45px 0 20px;
    line-height: 1.3;
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 35px 0 15px;
}

.article-content p {
    margin-bottom: 20px;
    line-height: 1.9;
}

.article-content ul,
.article-content ol {
    margin: 20px 0;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.article-content blockquote {
    margin: 35px 0;
    padding: 30px 35px;
    background: linear-gradient(135deg, #FDF8F3 0%, #F5EDE3 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 15px 15px 0;
    font-family: var(--font-subheading);
    font-size: 18px;
    font-style: italic;
    color: var(--warm-gray);
}

.article-image {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.article-image img {
    width: 100%;
    height: auto;
}

.article-image figcaption {
    padding: 15px;
    background: #f8f5f2;
    font-size: 14px;
    color: #888;
    text-align: center;
}

.info-box {
    margin: 35px 0;
    padding: 25px 30px;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
}

.info-box-title {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.info-box p {
    margin-bottom: 0;
    color: #2E7D32;
}

.related-articles {
    background: #F5F0EB;
    padding: 60px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.contact-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--warm-gray);
    margin-bottom: 35px;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--light-color);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #F5EDE3;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-warm);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-item-content h4 {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.contact-item-content p,
.contact-item-content a {
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.5;
}

.contact-item-content a:hover {
    color: var(--primary-color);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    height: 100%;
    min-height: 400px;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

footer {
    background: var(--gradient-dark);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-social img {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.footer-column h4 {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
}

.footer-column a:hover {
    color: var(--secondary-color);
}

.footer-newsletter p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    padding: 25px;
    z-index: 9998;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h4 {
    font-family: var(--font-accent);
    font-size: 16px;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

.cookie-text a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn.accept {
    background: var(--gradient-warm);
    color: white;
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 69, 27, 0.4);
}

.cookie-btn.reject {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 1px solid rgba(255,255,255,0.2);
}

.cookie-btn.reject:hover {
    background: rgba(255,255,255,0.15);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 40px 0 20px;
}

.policy-content h3 {
    font-family: var(--font-accent);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-color);
    margin: 30px 0 15px;
}

.policy-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.update-date {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--primary-color);
    background: rgba(212, 69, 27, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .articles-grid.layout-featured {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    
    .articles-grid.layout-featured .article-card:first-child {
        grid-row: auto;
    }
    
    .articles-grid.layout-featured .article-card:first-child .article-card-image {
        height: 300px;
        min-height: auto;
    }
    
    .articles-grid.layout-three {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-block.reverse {
        direction: ltr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .articles-grid.layout-three {
        grid-template-columns: 1fr;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
    
    .article-content h2 {
        font-size: 26px;
    }
    
    .page-header {
        padding: 100px 0 60px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 12px 15px;
    }
    
    .logo-title {
        font-size: 18px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
    }
    
    main {
        margin-top: 62px;
    }
    
    .mobile-nav {
        top: 62px;
    }
}
