:root {
    --primary-color: #0f172a;
    --primary-accent: #1e293b;
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --text-color: #0f172a;
    --text-secondary: #475569;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--bg-color);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

header {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
}

.navbar {
    padding: 1.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition);
    gap: 0.75rem;
}

.logo a:hover {
    color: var(--accent-blue);
}

.logo-mark {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 14px;
    transition: var(--transition);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-mark::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.logo a:hover .logo-mark {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.logo a:hover .logo-mark::before {
    left: 100%;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    position: relative;
    padding: 0.625rem 1.25rem;
    border-radius: 10px;
    display: block;
    letter-spacing: -0.01em;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0.375rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-light));
    border-radius: 2px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.05);
}

.nav-menu a:hover::before {
    width: calc(100% - 2.5rem);
}

.nav-menu a:active {
    transform: scale(0.98);
}

.nav-menu a.active {
    color: var(--accent-blue);
    background: rgba(59, 130, 246, 0.1);
}

.nav-menu a.active::before {
    width: calc(100% - 2.5rem);
}

.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    overflow: hidden;
    padding: 6rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    color: white;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-blue-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.intro {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--bg-light) 0%, var(--bg-color) 100%);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.intro-text p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

.museums {
    padding: 6rem 0;
    background-color: var(--bg-color);
}

.museums-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2rem;
}

.museum-card {
    background: var(--bg-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.museum-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-blue-light);
}

.museum-card.featured {
    grid-column: span 8;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}

.museum-card:not(.featured) {
    grid-column: span 4;
}

.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 300px;
}

.museum-card.featured .card-image-wrapper {
    min-height: 100%;
}

.museum-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 23, 42, 0.4) 100%);
    opacity: 0;
    transition: var(--transition);
}

.museum-card:hover .card-overlay {
    opacity: 1;
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.card-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-blue);
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.card-content h2,
.card-content h3 {
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.museum-card.featured .card-content h2 {
    font-size: 2rem;
}

.card-content h2 a,
.card-content h3 a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}

.card-content h2 a:hover,
.card-content h3 a:hover {
    color: var(--accent-blue);
}

.card-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
}

.card-personal {
    background: var(--bg-light);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border-left: 3px solid var(--accent-blue);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 1rem 0;
    font-style: italic;
}

.card-meta {
    display: flex;
    gap: 0.75rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.price-tag,
.time-tag,
.visit-tag {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--bg-light);
    color: var(--text-color);
    border: 1px solid var(--border-color);
}

.price-tag {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    color: white;
    border: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background-color: var(--accent-blue);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    width: fit-content;
    margin-top: auto;
}

.btn:hover {
    background-color: var(--primary-accent);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background-color: var(--accent-blue);
}

.btn-secondary {
    background-color: var(--text-secondary);
}

.btn-link {
    background-color: transparent;
    color: var(--accent-blue);
    text-decoration: underline;
    padding: 0.5rem;
}

.btn-link:hover {
    background-color: transparent;
    color: var(--accent-blue-light);
}

.why-visit {
    padding: 6rem 0;
    background: linear-gradient(to bottom, var(--bg-color) 0%, var(--bg-light) 100%);
}

.why-visit-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.why-visit h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-color);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: left;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-blue-light);
}

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2.5;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    margin-bottom: 2rem;
    width: fit-content;
}

.back-button:hover {
    background: var(--accent-blue);
    color: white;
    border-color: var(--accent-blue);
    transform: translateX(-4px);
    box-shadow: var(--shadow-md);
}

.back-button svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    transition: var(--transition);
}

.back-button:hover svg {
    transform: translateX(-2px);
}

.breadcrumb {
    padding: 1.5rem 0;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.breadcrumb a:not(.back-button) {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb a:not(.back-button):hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--text-light);
}

.article-header {
    padding: 3rem 0;
    border-bottom: 2px solid var(--border-color);
}

.article-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: var(--text-light);
    font-size: 0.9375rem;
    font-weight: 500;
}

.article-hero {
    padding: 3rem 0;
}

.article-hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.article-content {
    padding: 4rem 0;
}

.article-content .lead {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
    line-height: 1.7;
}

.article-content section {
    margin-bottom: 3rem;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.article-content ul,
.article-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.article-content li {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.article-content a {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.article-content a:hover {
    border-bottom-color: var(--accent-blue);
}

.page-header {
    padding: 4rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-color) 100%);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.page-header .subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
}

.page-content,
.story-content {
    padding: 4rem 0;
}

.page-content section,
.story-content section {
    margin-bottom: 3rem;
}

.page-content h2,
.story-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    letter-spacing: -0.02em;
}

.page-content h3,
.story-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--accent-blue);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.value-card h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-blue-light) 100%);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 4rem;
    color: white;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.cta-section a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    color: var(--accent-blue);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.contact-form {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.faq-section {
    margin-top: 5rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--accent-blue-light);
}

.faq-item h3 {
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

footer {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-accent) 100%);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: 6rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9375rem;
}

.footer-column a:hover {
    color: white;
    text-decoration: underline;
}

.stats {
    margin-top: 1.5rem;
}

.stats p {
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.disclaimer {
    text-align: center;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.75rem;
}

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-loader.active {
    opacity: 1;
    visibility: visible;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(59, 130, 246, 0.2);
    border-top-color: var(--accent-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1.5rem;
}

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

.loader-text {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    z-index: 2000;
    max-height: 80vh;
    overflow-y: auto;
    border-top: 1px solid var(--border-color);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h4 {
    margin-bottom: 1rem;
    color: var(--accent-blue);
    font-size: 1.25rem;
}

.cookie-content p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.cookie-types {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.cookie-types ul {
    margin-left: 1.5rem;
    margin-top: 0.75rem;
}

.cookie-types li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.cookie-policy {
    margin-top: 1rem;
    font-size: 0.875rem;
}

.cookie-policy a {
    color: var(--accent-blue);
    text-decoration: none;
}

.cookie-policy a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .museum-card.featured {
        grid-column: span 12;
        grid-template-columns: 1fr;
    }
    
    .museum-card:not(.featured) {
        grid-column: span 6;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1.25rem;
    }

    .nav-menu {
        flex-direction: row;
        gap: 0.25rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .breadcrumb .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .back-button {
        margin-bottom: 0;
    }

    .hero {
        min-height: 70vh;
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .museum-card.featured,
    .museum-card:not(.featured) {
        grid-column: span 12;
    }

    .museum-card.featured {
        grid-template-columns: 1fr;
    }

    .museums-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .article-header h1 {
        font-size: 2.25rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-actions {
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }

    .intro-heading {
        font-size: 2rem;
    }

    .why-visit h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 3rem 0;
        min-height: 60vh;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .article-header h1 {
        font-size: 1.875rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
