:root {
    --primary-dark: #1a365d;
    --primary-light: #2c5282;
    --accent-gold: #d4a574;
    --accent-warm: #c9956c;
    --bg-cream: #f8f5f0;
    --bg-warm: #faf7f2;
    --text-dark: #2d3748;
    --text-light: #718096;
    --white: #ffffff;
    --shadow-soft: 0 4px 20px rgba(26, 54, 93, 0.08);
    --shadow-medium: 0 8px 30px rgba(26, 54, 93, 0.12);
    --shadow-strong: 0 15px 50px rgba(26, 54, 93, 0.15);
    --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: 'Lato', 'Source Sans 3', sans-serif;
    color: var(--text-dark);
    background: var(--bg-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: 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-icon {
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border: 3px solid rgba(212, 165, 116, 0.3);
    border-top-color: var(--accent-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.navbar {
    background: rgba(26, 54, 93, 0.97);
    backdrop-filter: blur(10px);
    padding: 0.8rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: var(--shadow-medium);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand-icon {
    transition: transform 0.3s ease;
}

.navbar-brand:hover .brand-icon {
    transform: rotate(-5deg) scale(1.05);
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.brand-accent {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 400;
}

.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.toggler-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-gold);
    transition: var(--transition);
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-gold);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--accent-gold);
}

.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--bg-cream);
    color: var(--primary-dark);
    padding-left: 1.5rem;
}

.offcanvas {
    background: var(--primary-dark);
}

.offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.offcanvas-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas-body {
    padding: 1.5rem;
}

.offcanvas .navbar-nav .nav-link {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offcanvas .dropdown-menu {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.offcanvas .dropdown-item {
    color: rgba(255, 255, 255, 0.8);
}

.offcanvas .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-gold);
}

.offcanvas-articles {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-section-title {
    color: var(--accent-gold);
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.offcanvas-article-list {
    list-style: none;
    padding: 0;
}

.offcanvas-article-list li {
    margin-bottom: 0.5rem;
}

.offcanvas-article-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.offcanvas-article-list a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 60px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.85) 0%, rgba(44, 82, 130, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 165, 116, 0.2);
    color: var(--accent-gold);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 165, 116, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--white);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: var(--primary-dark);
    color: var(--accent-gold);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.1rem;
}

.landmark-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.landmark-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.landmark-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.landmark-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.landmark-card:hover .landmark-card-image img {
    transform: scale(1.08);
}

.landmark-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.landmark-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.landmark-card-title {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.landmark-card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.landmark-card-title a:hover {
    color: var(--accent-warm);
}

.landmark-card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.landmark-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.landmark-card-link:hover {
    color: var(--accent-gold);
    gap: 12px;
}

.featured-section {
    background: var(--primary-dark);
    position: relative;
    overflow: hidden;
}

.featured-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.1) 0%, transparent 100%);
}

.featured-content {
    position: relative;
    z-index: 1;
}

.featured-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.featured-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.featured-list {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.featured-list li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.featured-list li i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.featured-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.info-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.info-card-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-card-title {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.info-card-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.page-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background-size: cover;
    background-position: center;
    margin-top: 60px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.9) 0%, rgba(44, 82, 130, 0.8) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumb-custom a,
.breadcrumb-custom span {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.breadcrumb-custom a:hover {
    color: var(--accent-gold);
}

.breadcrumb-custom span.active {
    color: var(--accent-gold);
}

.article-content {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.article-meta-item i {
    color: var(--accent-gold);
}

.article-body h2 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin: 2.5rem 0 1rem;
}

.article-body h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin: 2rem 0 0.8rem;
}

.article-body p {
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.article-body ul,
.article-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.article-image {
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: var(--shadow-soft);
}

.article-image img {
    width: 100%;
    height: auto;
}

.article-image figcaption {
    padding: 1rem;
    background: var(--bg-cream);
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.info-box {
    background: var(--bg-cream);
    border-left: 4px solid var(--accent-gold);
    padding: 1.5rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

.info-box-title {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-box-title i {
    color: var(--accent-gold);
}

.related-articles {
    background: var(--bg-warm);
}

.related-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.related-card-image {
    height: 180px;
    overflow: hidden;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.05);
}

.related-card-body {
    padding: 1.2rem;
}

.related-card-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.related-card-title a {
    color: var(--primary-dark);
    text-decoration: none;
    transition: var(--transition);
}

.related-card-title a:hover {
    color: var(--accent-gold);
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
}

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-warm) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.contact-card-title {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.contact-card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.contact-card-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.contact-card-link:hover {
    color: var(--accent-gold);
}

.faq-section {
    background: var(--bg-warm);
}

.faq-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-cream);
}

.faq-question h4 {
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
}

.faq-question i {
    color: var(--accent-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: var(--text-light);
    margin: 0;
}

.about-story {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-section {
    background: var(--bg-warm);
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--accent-gold);
}

.value-title {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 0.8rem;
}

.value-text {
    color: var(--text-light);
}

.policy-content {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
}

.policy-content h2 {
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin: 2rem 0 1rem;
}

.policy-content h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin: 1.5rem 0 0.8rem;
}

.policy-content p {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-content li {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.site-footer {
    background: var(--primary-dark);
    color: var(--white);
}

.footer-top {
    padding: 4rem 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--white);
}

.footer-logo .accent {
    color: var(--accent-gold);
    font-style: italic;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-title {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.footer-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0;
}

.footer-note a {
    color: var(--accent-gold);
    text-decoration: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 1.5rem 0;
    z-index: 9998;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--accent-gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-text a {
    color: var(--accent-gold);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept {
    background: var(--accent-gold);
    color: var(--primary-dark);
    border: none;
    padding: 0.6rem 1.5rem;
    font-weight: 600;
}

.btn-cookie-accept:hover {
    background: var(--accent-warm);
    color: var(--primary-dark);
}

.external-link {
    color: var(--primary-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--accent-gold);
    transition: var(--transition);
}

.external-link:hover {
    color: var(--accent-gold);
}

@media (max-width: 991px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
    
    .article-content {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 60vh;
        background-attachment: scroll;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .article-content {
        padding: 1.5rem;
        margin-top: -2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .footer-top {
        padding: 3rem 0;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-hero {
        padding: 8rem 0 4rem;
    }
    
    .page-hero-title {
        font-size: 1.8rem;
    }
}
