:root {
    --primary: #2d6a4f;
    --primary-light: #40916c;
    --primary-dark: #1b4332;
    --secondary: #d4a373;
    --secondary-light: #e9c46a;
    --accent: #264653;
    --accent-light: #2a6f7a;
    --cream: #faf3e0;
    --cream-dark: #f0e6cc;
    --warm-gray: #f5f1eb;
    --dark: #1b2a30;
    --text: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text);
    background: var(--warm-gray);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.3;
}

h6 {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

.serif-text {
    font-family: 'Lora', serif;
}

.display-text {
    font-family: 'Merriweather', serif;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--warm-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--cream-dark);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 100%);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.site-header .navbar {
    padding: 0.8rem 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.brand-accent {
    color: var(--secondary);
    font-weight: 400;
}

.site-header .nav-link {
    color: rgba(255,255,255,0.85);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: 0.3px;
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--white);
}

.site-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.site-header .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
}

.site-header .dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.site-header .dropdown-item:hover {
    background: var(--cream);
    color: var(--primary);
}

.burger-btn {
    border: none;
    background: none;
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.burger-btn:hover .burger-line {
    background: var(--secondary);
}

.offcanvas {
    background: var(--warm-gray);
    border-left: none;
    box-shadow: var(--shadow-lg);
}

.offcanvas-title {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
}

.mobile-nav .nav-link {
    color: var(--text);
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
    font-weight: 600;
}

.mobile-nav .nav-link:hover {
    background: var(--cream);
    color: var(--primary);
}

.mobile-nav-divider {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid var(--cream-dark);
}

.mobile-nav-divider .nav-label {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-light);
    padding: 0.25rem 0.5rem;
}

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 50%, var(--accent) 100%);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('') center/cover no-repeat;
    opacity: 0.15;
}

.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 4rem 0;
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.15;
}

.hero-content p {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    font-family: 'Lora', serif;
}

.hero-content .btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-primary-custom {
    background: var(--secondary);
    border: none;
    color: var(--dark);
}

.btn-primary-custom:hover {
    background: var(--secondary-light);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212,163,115,0.4);
}

.btn-outline-custom {
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
    background: transparent;
}

.btn-outline-custom:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.page-hero {
    position: relative;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 100%);
    text-align: center;
    overflow: hidden;
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--warm-gray);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-hero h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero p {
    color: rgba(255,255,255,0.8);
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--cream);
}

.section-dark {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.section-dark h2,
.section-dark h3 {
    color: var(--white);
}

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary);
    border-radius: 3px;
}

.section-header p {
    color: var(--text-light);
    font-family: 'Lora', serif;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.article-card .card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.article-card .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.article-card .card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-card .card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card .card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.article-card .card-title a {
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.article-card .card-title a:hover {
    color: var(--primary);
}

.article-card .card-text {
    color: var(--text-light);
    font-size: 0.92rem;
    flex: 1;
}

.article-card .card-footer-custom {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--cream);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

.feature-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
}

.feature-icon.green {
    background: rgba(45,106,79,0.1);
    color: var(--primary);
}

.feature-icon.gold {
    background: rgba(212,163,115,0.15);
    color: var(--secondary);
}

.feature-icon.teal {
    background: rgba(38,70,83,0.1);
    color: var(--accent);
}

.feature-block h4 {
    font-size: 1.15rem;
    margin-bottom: 0.8rem;
}

.feature-block p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.info-box {
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border-left: 4px solid var(--primary);
}

.info-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.tip-list {
    list-style: none;
    padding: 0;
}

.tip-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
}

.tip-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

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

.contact-card .contact-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1.2rem;
}

.contact-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    font-size: 0.9rem;
}

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

.faq-section .accordion-item {
    border: none;
    margin-bottom: 0.75rem;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-section .accordion-button {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
    padding: 1.2rem 1.5rem;
    background: var(--white);
}

.faq-section .accordion-button:not(.collapsed) {
    background: var(--cream);
    color: var(--primary-dark);
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-body {
    padding: 0.5rem 1.5rem 1.2rem;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.article-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

.article-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream);
}

.article-content h2:first-of-type {
    margin-top: 1rem;
    padding-top: 0;
    border-top: none;
}

.article-content h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.article-content p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.85;
}

.article-content img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
}

.article-content .img-caption {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: -0.5rem;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--cream);
    flex-wrap: wrap;
}

.article-meta span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.article-meta i {
    color: var(--primary);
    margin-right: 0.4rem;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.sidebar-widget h5 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--cream);
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li a {
    display: block;
    padding: 0.6rem 0;
    color: var(--text);
    text-decoration: none;
    font-size: 0.92rem;
    transition: var(--transition);
    border-bottom: 1px solid var(--cream);
}

.sidebar-widget ul li:last-child a {
    border-bottom: none;
}

.sidebar-widget ul li a:hover {
    color: var(--primary);
    padding-left: 0.5rem;
}

.external-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.external-link::after {
    content: '\F1C5';
    font-family: 'bootstrap-icons';
    font-size: 0.75em;
}

.breadcrumb-custom {
    padding: 1rem 0;
    margin-bottom: 0;
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--primary);
    font-size: 0.85rem;
}

.stats-section {
    padding: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 0.3rem;
}

.site-footer {
    background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

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

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-brand span {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-heading {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

.footer-bottom p {
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--white);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
    padding: 1.5rem;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-icon {
    font-size: 1.8rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.cookie-text strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--dark);
}

.cookie-text p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.5;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

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

.btn-cookie-accept {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-cookie-reject {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--text-light);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-cookie-reject:hover {
    border-color: var(--dark);
    color: var(--dark);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--text-light);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    text-decoration: underline;
    transition: var(--transition);
}

.btn-cookie-settings:hover {
    color: var(--primary);
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--cream);
}

.cookie-modal-header h5 {
    font-family: 'Playfair Display', serif;
    margin: 0;
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid var(--cream);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.cookie-option p {
    font-size: 0.83rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.cookie-modal-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--cream);
    text-align: right;
}

.about-values {
    position: relative;
}

.about-values .value-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.about-values .value-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.about-values .value-content h4 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.about-values .value-content p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 0;
}

.policy-content h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content p,
.policy-content li {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
}

.table-of-contents {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.table-of-contents h5 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
}

.table-of-contents ol {
    margin: 0;
    padding-left: 1.2rem;
}

.table-of-contents li {
    margin-bottom: 0.4rem;
}

.table-of-contents a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.table-of-contents a:hover {
    text-decoration: underline;
}

.breed-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2.5rem;
}

.breed-card .breed-img {
    height: 300px;
    overflow: hidden;
}

.breed-card .breed-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breed-card .breed-info {
    padding: 2rem;
}

.breed-card .breed-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--cream);
}

.breed-spec {
    text-align: center;
    padding: 0.8rem;
    background: var(--cream);
    border-radius: var(--radius);
}

.breed-spec strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.breed-spec span {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 0.9rem;
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 3.5rem 0;
    }

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

@media (max-width: 767px) {
    .hero-section {
        min-height: 60vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .page-hero {
        padding: 3.5rem 0 3rem;
    }

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

    .section-header h2 {
        font-size: 1.8rem;
    }

    .article-content {
        padding: 1.5rem;
        margin-top: -1rem;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        flex-direction: column;
        align-items: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .breed-card .breed-img {
        height: 200px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 1.7rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .article-card .card-img-wrapper {
        height: 180px;
    }

    .contact-card {
        padding: 1.5rem;
    }
}