*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5f7a;
    --primary-dark: #0d3d4d;
    --primary-light: #2980a8;
    --accent-color: #c9a227;
    --accent-light: #e3be4a;
    --text-dark: #1a2a3a;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-dark: #1a2a3a;
    --bg-cream: #f8f6f1;
    --bg-light: #f7fafc;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    --font-accent: 'Open Sans', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
}

.logo-accent {
    color: var(--accent-color);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1010;
}

.burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 5px;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 10px 18px;
    color: rgba(255,255,255,0.9);
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
}

.has-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 8px;
    vertical-align: middle;
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-toggle::after {
    transform: rotate(-135deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    min-width: 220px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    list-style: none;
    overflow: hidden;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.main-content {
    padding-top: 70px;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Sillian_Thurntaler_09.jpg/1920px-Sillian_Thurntaler_09.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,42,58,0.85) 0%, rgba(26,95,122,0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 16px 40px;
    background: var(--accent-color);
    color: var(--text-dark);
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition);
}

.hero-cta:hover {
    background: var(--accent-light);
    color: var(--text-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-color);
    color: var(--text-dark);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.hero-meta {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin-top: 15px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-top: 5px;
}

.intro-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    margin-top: 10px;
}

.intro-text p {
    color: var(--text-medium);
    margin-bottom: 18px;
}

.intro-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-cream) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.guides-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.guides-section .section-label,
.guides-section .section-header h2 {
    color: #fff;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.guide-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.guide-card:hover {
    transform: translateY(-10px);
}

.guide-image {
    height: 220px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.guide-card:hover .guide-image img {
    transform: scale(1.05);
}

.guide-content {
    padding: 25px;
}

.guide-category {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.guide-content h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.guide-content h3 a {
    color: var(--text-dark);
}

.guide-content h3 a:hover {
    color: var(--primary-color);
}

.guide-content p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 15px;
    line-height: 1.6;
}

.guide-link {
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.guide-link::after {
    content: '\2192';
    transition: var(--transition);
}

.guide-link:hover::after {
    transform: translateX(4px);
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: #fff;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.cta-section {
    padding: 100px 0;
    background: var(--bg-cream);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-medium);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-accent);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.page-hero {
    position: relative;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.page-hero-article {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/f/f4/Patscherkofel_summit.jpg/1920px-Patscherkofel_summit.jpg');
}

.page-hero-beginners {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/0/0a/Skischule_Warth-Schr%C3%B6cken_02.jpg/1920px-Skischule_Warth-Schr%C3%B6cken_02.jpg');
}

.page-hero-activities {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Eislaufen_Wiener_Eistraum_2010_a.jpg/1920px-Eislaufen_Wiener_Eistraum_2010_a.jpg');
}

.page-hero-about {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/d/df/Alpen_%C3%96sterreich.jpg/1920px-Alpen_%C3%96sterreich.jpg');
}

.page-hero-contact {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/85/Sillian_Thurntaler_09.jpg/1920px-Sillian_Thurntaler_09.jpg');
}

.page-hero-policy {
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/thumb/2/21/Hintertux_Glacier%2C_Austria.jpg/1920px-Hintertux_Glacier%2C_Austria.jpg');
    min-height: 35vh;
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    margin-bottom: 15px;
}

.page-hero > p,
.page-hero .hero-content > p:not(.hero-meta) {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.article-content {
    padding: 60px 0 100px;
    background: var(--bg-cream);
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 50px;
}

.article-intro .lead {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.article-toc {
    background: var(--bg-card);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-sm);
}

.article-toc h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.article-toc ul {
    list-style: none;
}

.article-toc li {
    margin-bottom: 10px;
}

.article-toc a {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.article-toc a:hover {
    color: var(--primary-color);
}

.article-section {
    margin-bottom: 50px;
}

.article-section h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-color);
}

.article-section h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-section p {
    color: var(--text-medium);
    margin-bottom: 18px;
}

.resort-image {
    margin: 25px 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.resort-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.resort-highlights,
.activity-highlights {
    background: var(--bg-light);
    padding: 25px 30px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-color);
}

.resort-highlights h4,
.activity-highlights h4 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.resort-highlights ul,
.activity-highlights ul {
    list-style: none;
}

.resort-highlights li,
.activity-highlights li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: var(--text-medium);
}

.resort-highlights li::before,
.activity-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.comparison-table {
    margin: 30px 0;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comparison-table h4 {
    padding: 20px 25px;
    background: var(--primary-color);
    color: #fff;
    margin: 0;
}

.table-wrapper {
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table td {
    color: var(--text-medium);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.article-list {
    margin: 20px 0;
    padding-left: 25px;
}

.article-list li {
    margin-bottom: 12px;
    color: var(--text-medium);
}

.article-list.numbered {
    list-style-type: decimal;
}

.tip-box {
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f9ff 100%);
    padding: 25px 30px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-color);
}

.tip-box h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.tip-box ul {
    list-style: none;
    margin: 0;
}

.tip-box li {
    margin-bottom: 8px;
    color: var(--text-medium);
}

.tip-box-important {
    background: linear-gradient(135deg, #fff8e6 0%, #fffdf5 100%);
    border-left-color: var(--accent-color);
}

.tip-box-important h4 {
    color: #b8860b;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.equipment-item {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.equipment-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.equipment-item p {
    font-size: 0.9rem;
    margin: 0;
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.comparison-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.comparison-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

.comparison-card ul {
    list-style: none;
}

.comparison-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.comparison-card li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.timeline-box {
    background: var(--bg-card);
    padding: 25px 30px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: var(--shadow-sm);
}

.timeline-box h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px dashed var(--border-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-item .time {
    min-width: 80px;
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-item .activity {
    color: var(--text-medium);
}

.slope-guide {
    margin: 25px 0;
}

.slope-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: var(--bg-card);
    border-radius: 8px;
    margin-bottom: 10px;
    box-shadow: var(--shadow-sm);
}

.slope-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
}

.slope-blue .slope-color {
    background: #2563eb;
}

.slope-red .slope-color {
    background: #dc2626;
}

.slope-black .slope-color {
    background: #1f2937;
}

.slope-info strong {
    display: block;
    margin-bottom: 5px;
}

.slope-info p {
    margin: 0;
    font-size: 0.9rem;
}

.article-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--bg-light);
    color: var(--text-medium);
    font-size: 0.85rem;
    border-radius: 20px;
}

.article-share p {
    font-weight: 600;
    margin-bottom: 10px;
}

.related-links {
    list-style: none;
}

.related-links li {
    margin-bottom: 8px;
}

.related-links a {
    color: var(--primary-color);
}

.article-sidebar {
    position: sticky;
    top: 90px;
    align-self: start;
}

.sidebar-card {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
}

.quick-facts {
    list-style: none;
}

.quick-facts li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-medium);
}

.quick-facts li:last-child {
    border-bottom: none;
}

.quick-facts strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.resource-links {
    list-style: none;
}

.resource-links li {
    margin-bottom: 12px;
}

.resource-links a {
    font-size: 0.9rem;
    color: var(--primary-color);
}

.checklist {
    list-style: none;
}

.checklist li {
    position: relative;
    padding-left: 28px;
    padding: 8px 0 8px 28px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 16px;
    height: 16px;
    border: 2px solid var(--primary-color);
    border-radius: 3px;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #fff;
}

.sidebar-cta h3 {
    color: #fff;
    border-bottom-color: var(--accent-color);
}

.sidebar-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.sidebar-cta .btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
    width: 100%;
    text-align: center;
}

.sidebar-cta .btn-primary:hover {
    background: var(--accent-light);
}

.about-intro {
    padding: 100px 0;
    background: var(--bg-cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 10px;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 18px;
}

.about-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-values {
    padding: 100px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--bg-card);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.value-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-icon svg {
    width: 26px;
    height: 26px;
    stroke: #fff;
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.about-coverage {
    padding: 100px 0;
    background: var(--bg-cream);
}

.coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.coverage-text h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    margin-top: 10px;
}

.coverage-text > p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

.coverage-list {
    list-style: none;
}

.coverage-list li {
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.coverage-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
}

.coverage-list strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.coverage-list p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-box .stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.stat-box .stat-text {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.about-cta {
    padding: 80px 0;
    background: var(--bg-light);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 50px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
}

.cta-box h2 {
    color: #fff;
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 25px;
}

.cta-box .btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.cta-box .btn-primary:hover {
    background: var(--accent-light);
}

.contact-intro {
    padding: 60px 0 40px;
    background: var(--bg-cream);
    text-align: center;
}

.contact-intro-text {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.contact-cards-section {
    padding: 40px 0 80px;
    background: var(--bg-cream);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--text-dark);
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-email {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    word-break: break-word;
}

.contact-email:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.faq-answer {
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-color);
}

.response-section {
    padding: 60px 0;
    background: var(--bg-cream);
}

.response-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.response-box h3 {
    margin-bottom: 12px;
}

.response-box p {
    color: var(--text-medium);
    margin: 0;
}

.policy-content {
    padding: 60px 0 100px;
    background: var(--bg-cream);
}

.policy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-color);
}

.policy-section h3 {
    font-size: 1.15rem;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.policy-section p {
    color: var(--text-medium);
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.policy-section li {
    color: var(--text-medium);
    margin-bottom: 10px;
}

.cookie-types {
    display: grid;
    gap: 15px;
    margin: 20px 0;
}

.cookie-type {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
}

.cookie-type h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.cookie-type p {
    margin: 0;
    font-size: 0.9rem;
}

.site-footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 80px 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 35px;
    height: 35px;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #fff;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.copyright,
.update-info {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text h3 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cookie-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

.cookie-text a {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.cookie-btn-accept:hover {
    background: var(--accent-light);
}

.cookie-btn-reject {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-reject:hover {
    background: rgba(255,255,255,0.1);
}

.cookie-btn-settings {
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: none;
    text-decoration: underline;
}

.cookie-btn-settings:hover {
    color: #fff;
}

.cookie-settings-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookie-settings-modal.show {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    position: relative;
    background: var(--bg-card);
    max-width: 500px;
    width: 90%;
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.modal-content h3 {
    margin-bottom: 12px;
}

.modal-content > p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.cookie-options {
    margin-bottom: 25px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    border-radius: 26px;
    transition: var(--transition);
}

.toggle-slider::before {
    position: absolute;
    content: '';
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

.cookie-toggle input:checked + .toggle-slider::before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.option-info strong {
    display: block;
    margin-bottom: 5px;
}

.option-info p {
    font-size: 0.85rem;
    color: var(--text-medium);
    margin: 0;
}

.modal-buttons {
    display: flex;
    gap: 12px;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .article-grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-grid,
    .intro-grid,
    .coverage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-dark);
        padding: 30px 20px;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-link {
        padding: 15px 20px;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255,255,255,0.05);
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .has-dropdown.open .dropdown-menu {
        max-height: 300px;
    }

    .dropdown-menu li a {
        color: rgba(255,255,255,0.8);
        border-bottom-color: rgba(255,255,255,0.05);
    }

    .dropdown-menu li a:hover {
        background: rgba(255,255,255,0.1);
        color: #fff;
    }

    .hero-section {
        min-height: 70vh;
        background-attachment: scroll;
    }

    .features-grid,
    .guides-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .equipment-grid,
    .comparison-cards {
        grid-template-columns: 1fr;
    }

    .coverage-stats {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .modal-content {
        padding: 25px;
    }

    .policy-wrapper {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 60px;
    }

    .main-content {
        padding-top: 60px;
    }

    .main-nav {
        top: 60px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .cookie-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .timeline-item {
        flex-direction: column;
        gap: 5px;
    }
}
