@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&family=Playfair+Display:wght@500;600;700&family=Open+Sans:wght@400;500;600&family=Lora:wght@400;500;600&display=swap');

:root {
    --primary-color: #2D6A4F;
    --primary-light: #40916C;
    --primary-dark: #1B4332;
    --secondary-color: #74C69D;
    --accent-color: #D8F3DC;
    --warm-beige: #F5F1EB;
    --warm-cream: #FDF8F3;
    --text-dark: #2C3E50;
    --text-medium: #5D6D7E;
    --text-light: #8E9EAB;
    --border-color: #E5E5E5;
    --shadow-soft: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 8px 30px rgba(0,0,0,0.12);
    --shadow-card: 0 2px 15px rgba(45,106,79,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--warm-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.35rem); }

p {
    font-family: 'Nunito', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-medium);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--warm-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--accent-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 0;
    box-shadow: var(--shadow-medium);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--secondary-color);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-desktop a {
    color: rgba(255,255,255,0.9);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
    transition: var(--transition);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: #fff;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;
}

.burger-btn span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 100px 30px 40px;
    transition: var(--transition);
    z-index: 1050;
    overflow-y: auto;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1040;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-title {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav a {
    display: block;
    color: rgba(255,255,255,0.9);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.mobile-nav-articles {
    margin-top: 30px;
}

@media (max-width: 991px) {
    .nav-desktop {
        display: none;
    }
    
    .burger-btn {
        display: flex;
    }
    
    .header-container {
        height: 70px;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 0 1rem;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 38px;
        height: 38px;
    }
}

main {
    padding-top: 80px;
    min-height: calc(100vh - 400px);
}

@media (max-width: 991px) {
    main {
        padding-top: 70px;
    }
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--primary-light) 100%);
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(116,198,157,0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: var(--secondary-color);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    color: #fff;
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero-subtitle {
    color: rgba(255,255,255,0.85);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.8;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-dark);
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 15px 35px;
    border-radius: var(--radius-xl);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
    color: var(--primary-color);
}

.section {
    padding: 80px 0;
}

.section-alt {
    background: var(--warm-beige);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-light);
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    margin: 20px auto;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.article-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.article-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.article-card:hover .article-card-image img {
    transform: scale(1.05);
}

.article-card-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card-body {
    padding: 25px;
}

.article-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    transition: var(--transition);
}

.article-card:hover .article-card-title {
    color: var(--primary-color);
}

.article-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.article-card-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.article-card-meta svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.article-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 15px;
}

.article-card-link:hover {
    gap: 12px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.feature-box {
    background: #fff;
    padding: 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-box:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon svg {
    width: 35px;
    height: 35px;
    color: #fff;
}

.feature-box h4 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.feature-box p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

@media (max-width: 991px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}

.article-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.article-header {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--accent-color);
}

.article-header h1 {
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.9;
}

.article-body h2 {
    margin: 35px 0 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.article-body h3 {
    margin: 25px 0 15px;
}

.article-body p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.article-body ul,
.article-body ol {
    margin: 20px 0 25px 25px;
}

.article-body li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.article-body a {
    color: var(--primary-color);
    text-decoration: underline;
    text-decoration-color: var(--secondary-color);
    text-underline-offset: 3px;
}

.article-body a:hover {
    color: var(--primary-dark);
}

.article-image {
    margin: 30px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    background: var(--warm-beige);
    padding: 12px 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

.info-box {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--warm-beige) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 30px 0;
}

.info-box h4 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-soft);
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
    color: var(--primary-dark);
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

.sidebar-list a:hover {
    color: var(--primary-color);
}

.sidebar-contact {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
}

.sidebar-contact .sidebar-title {
    color: #fff;
    border-bottom-color: rgba(255,255,255,0.2);
}

.sidebar-contact p {
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.sidebar-contact a {
    color: #fff;
    text-decoration: underline;
}

.main-footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0D2818 100%);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand-icon {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-brand-icon img {
    width: 28px;
    height: 28px;
}

.footer-brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
}

.footer-brand-text span {
    color: var(--secondary-color);
}

.footer-about p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-title {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-contact-icon svg {
    width: 18px;
    height: 18px;
    color: var(--secondary-color);
}

.footer-contact-text {
    font-size: 0.95rem;
}

.footer-contact-text strong {
    display: block;
    color: #fff;
    margin-bottom: 3px;
}

.footer-contact-text span,
.footer-contact-text a {
    color: rgba(255,255,255,0.7);
}

.footer-contact-text a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-bottom a {
    color: rgba(255,255,255,0.7);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 20px 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cookie-text p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 0;
}

.cookie-text a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.cookie-btn-accept {
    background: var(--primary-color);
    color: #fff;
}

.cookie-btn-accept:hover {
    background: var(--primary-dark);
}

.cookie-btn-reject {
    background: var(--warm-beige);
    color: var(--text-dark);
}

.cookie-btn-reject:hover {
    background: var(--border-color);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--text-medium);
    padding: 12px 15px;
}

.cookie-btn-settings:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    color: #fff;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.breadcrumb-separator {
    color: rgba(255,255,255,0.4);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info-box {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-soft);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.contact-info-content h4 {
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.contact-info-content p {
    margin-bottom: 0;
    color: var(--text-medium);
}

.contact-info-content a {
    color: var(--primary-color);
}

.policy-content {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.policy-content h2 {
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p,
.policy-content li {
    color: var(--text-dark);
    line-height: 1.8;
}

.policy-content ul {
    margin: 15px 0 20px 25px;
}

.policy-content li {
    margin-bottom: 8px;
}

.external-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.external-link::after {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%232D6A4F'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M10 6H6a2 2 0 00-2 2v10a2 2 0 002 2h10a2 2 0 002-2v-4M14 4h6m0 0v6m0-6L10 14'/%3E%3C/svg%3E");
    background-size: contain;
}

.vet-list {
    display: grid;
    gap: 25px;
}

.vet-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 25px;
    align-items: start;
    transition: var(--transition);
}

.vet-card:hover {
    box-shadow: var(--shadow-medium);
}

@media (max-width: 768px) {
    .vet-card {
        grid-template-columns: 1fr;
    }
}

.vet-card h3 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.vet-card-address {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.vet-card-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vet-card-services span {
    background: var(--accent-color);
    color: var(--primary-dark);
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 15px;
}

.vet-card-contact {
    text-align: right;
}

@media (max-width: 768px) {
    .vet-card-contact {
        text-align: left;
    }
}

.vet-card-contact a {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 8px;
}

.update-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-dark);
    font-size: 0.8rem;
    padding: 5px 12px;
    border-radius: 15px;
    margin-bottom: 20px;
}

@media (max-width: 576px) {
    .section {
        padding: 50px 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .article-content,
    .policy-content,
    .contact-info-box {
        padding: 25px;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    .main-header,
    .main-footer,
    .cookie-banner,
    .sidebar {
        display: none;
    }
    
    main {
        padding-top: 0;
    }
    
    .article-content {
        box-shadow: none;
        padding: 0;
    }
}
