:root {
    --color-primary: #2d5a3d;
    --color-primary-light: #3d7a52;
    --color-primary-dark: #1e3d29;
    --color-secondary: #8b9a6d;
    --color-accent: #c4a35a;
    --color-accent-light: #d4b86a;
    --color-bg-cream: #f7f4ed;
    --color-bg-sage: #e8ebe2;
    --color-bg-dark: #1a2e1f;
    --color-text-dark: #2c3e2d;
    --color-text-light: #f7f4ed;
    --color-text-muted: #6b7c6d;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-subheading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', sans-serif;
    --font-accent: 'Source Sans 3', sans-serif;
    --shadow-soft: 0 4px 20px rgba(45, 90, 61, 0.08);
    --shadow-medium: 0 8px 30px rgba(45, 90, 61, 0.12);
    --shadow-strong: 0 12px 40px rgba(45, 90, 61, 0.18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-bg-cream);
    overflow-x: hidden;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--color-bg-sage);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loader-text {
    font-family: var(--font-accent);
    color: var(--color-text-muted);
    font-size: 14px;
    letter-spacing: 1px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    padding: 0;
    box-shadow: var(--shadow-medium);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text-light);
}

.logo-icon {
    width: 40px;
    height: 40px;
    color: var(--color-accent);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--color-accent);
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-light);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-accent-light);
}

.has-dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    margin-left: 6px;
    vertical-align: middle;
    transition: var(--transition-fast);
}

.has-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-strong);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-normal);
    list-style: none;
    margin-top: 10px;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--color-text-dark);
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 14px;
    transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--color-bg-sage);
    color: var(--color-primary);
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-line {
    width: 25px;
    height: 2px;
    background: var(--color-text-light);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-primary-dark);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    z-index: 999;
}

.mobile-nav.active {
    max-height: 500px;
    padding: 20px 0;
}

.mobile-nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-link,
.mobile-dropdown-title {
    display: block;
    padding: 15px 0;
    color: var(--color-text-light);
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-dropdown-title {
    cursor: default;
    color: var(--color-accent);
    font-weight: 600;
}

.mobile-dropdown-list {
    list-style: none;
    padding-left: 20px;
}

.mobile-dropdown-list a {
    display: block;
    padding: 12px 0;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: var(--transition-fast);
}

.mobile-dropdown-list a:hover {
    color: var(--color-accent);
    opacity: 1;
}

.main-content {
    margin-top: 70px;
}

.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-secondary) 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 61, 41, 0.9) 0%, rgba(45, 90, 61, 0.8) 50%, rgba(139, 154, 109, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--color-accent);
}

.hero-subtitle {
    font-family: var(--font-subheading);
    font-size: 24px;
    color: rgba(247, 244, 237, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.hero-description {
    font-size: 17px;
    color: rgba(247, 244, 237, 0.85);
    line-height: 1.8;
    margin-bottom: 35px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--color-accent);
    color: var(--color-text-dark);
    text-decoration: none;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    box-shadow: var(--shadow-medium);
}

.hero-cta:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-strong);
}

.hero-cta svg {
    width: 20px;
    height: 20px;
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.section {
    padding: 100px 40px;
}

.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
}

.section-sage {
    background: var(--color-bg-sage);
}

.section-cream {
    background: var(--color-bg-cream);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header p {
    font-family: var(--font-subheading);
    font-size: 20px;
    color: var(--color-text-muted);
    font-style: italic;
}

.section-dark .section-header p {
    color: rgba(247, 244, 237, 0.7);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.articles-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
}

.article-featured {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.article-featured img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.article-featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px;
    background: linear-gradient(transparent, rgba(26, 46, 31, 0.95));
}

.article-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--color-accent);
    color: var(--color-text-dark);
    font-family: var(--font-accent);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

.article-featured h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
}

.article-featured p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 20px;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    text-decoration: none;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.article-link:hover {
    color: var(--color-accent-light);
    gap: 12px;
}

.article-link svg {
    width: 18px;
    height: 18px;
}

.articles-side {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.article-card {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
    text-decoration: none;
}

.article-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-medium);
}

.article-card-image {
    width: 140px;
    min-height: 140px;
    flex-shrink: 0;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-content {
    padding: 20px 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-card-tag {
    font-family: var(--font-accent);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.article-card h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.article-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.tips-section {
    position: relative;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tip-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    transition: var(--transition-normal);
}

.tip-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.tip-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 15px;
}

.tip-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 14px;
    color: rgba(247, 244, 237, 0.75);
    line-height: 1.7;
}

.newsletter-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 80px;
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.contact-hero {
    position: relative;
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    text-align: center;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://upload.wikimedia.org/wikipedia/commons/thumb/4/4e/Botanischer_Garten_der_Universit%C3%A4t_Wien_2010-04.jpg/1280px-Botanischer_Garten_der_Universit%C3%A4t_Wien_2010-04.jpg') center/cover;
    opacity: 0.15;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.contact-hero p {
    font-family: var(--font-subheading);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px 40px;
}

.contact-intro p {
    font-size: 17px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

.contact-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-text-dark);
}

.contact-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-dark);
}

.contact-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-card a {
    color: var(--color-primary);
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.contact-card a:hover {
    color: var(--color-accent);
}

.faq-section {
    background: var(--color-bg-sage);
    padding: 80px 40px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-text-dark);
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: var(--color-bg-sage);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 30px 25px;
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 15px;
}

.page-hero {
    position: relative;
    padding: 120px 40px 80px;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.page-hero p {
    font-family: var(--font-subheading);
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    font-family: var(--font-accent);
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--color-accent);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-current {
    color: var(--color-accent) !important;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-bg-sage);
}

.article-date {
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--color-text-muted);
}

.article-reading-time {
    font-family: var(--font-accent);
    font-size: 14px;
    color: var(--color-primary);
    background: var(--color-bg-sage);
    padding: 5px 12px;
    border-radius: var(--radius-sm);
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    margin: 50px 0 25px;
    color: var(--color-text-dark);
}

.article-content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 20px;
    color: var(--color-text-dark);
}

.article-content p {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--color-text-dark);
}

.article-content ul,
.article-content ol {
    margin: 0 0 25px 25px;
}

.article-content li {
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.article-content a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.article-content a:hover {
    color: var(--color-accent);
}

.article-image {
    margin: 40px 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    padding: 15px 20px;
    background: var(--color-bg-sage);
    font-size: 14px;
    color: var(--color-text-muted);
    font-style: italic;
}

.info-box {
    background: var(--color-bg-sage);
    border-left: 4px solid var(--color-primary);
    padding: 25px 30px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 30px 0;
}

.info-box h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.info-box p {
    margin-bottom: 0;
    font-size: 15px;
}

.about-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-story-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--color-text-dark);
}

.about-story-content p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.about-story-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.about-story-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.values-section {
    background: var(--color-bg-sage);
    padding: 80px 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.value-card svg {
    width: 50px;
    height: 50px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--color-text-dark);
}

.value-card p {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 100px;
}

.policy-content h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 600;
    margin: 45px 0 20px;
    color: var(--color-text-dark);
}

.policy-content h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    margin: 35px 0 15px;
    color: var(--color-text-dark);
}

.policy-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--color-text-dark);
}

.policy-content ul {
    margin: 0 0 20px 25px;
}

.policy-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

.policy-content a {
    color: var(--color-primary);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--color-accent);
}

.site-footer {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    color: var(--color-bg-dark);
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-content {
    padding: 80px 40px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 35px;
    height: 35px;
    color: var(--color-accent);
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
}

.footer-description {
    font-size: 14px;
    color: rgba(247, 244, 237, 0.7);
    line-height: 1.7;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-accent);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul a {
    color: rgba(247, 244, 237, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-section ul a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 14px;
    color: rgba(247, 244, 237, 0.6);
}

.footer-update {
    font-size: 13px;
    color: rgba(247, 244, 237, 0.5);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 25px 40px;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cookie-text {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
}

.cookie-icon {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.cookie-text p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font-accent);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cookie-accept {
    background: var(--color-primary);
    color: white;
}

.cookie-accept:hover {
    background: var(--color-primary-dark);
}

.cookie-reject {
    background: var(--color-bg-sage);
    color: var(--color-text-dark);
}

.cookie-reject:hover {
    background: var(--color-bg-cream);
}

@media (max-width: 1200px) {
    .hero-content {
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 46px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-image-wrapper::before {
        display: none;
    }
    
    .articles-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .about-story {
        grid-template-columns: 1fr;
    }
    
    .about-story-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 20px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .mobile-nav-content {
        padding: 0 20px;
    }
    
    .hero-section {
        min-height: auto;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-section {
        flex-direction: column;
        padding: 40px 25px;
        text-align: center;
    }
    
    .contact-hero {
        padding: 100px 20px 60px;
    }
    
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-intro {
        padding: 40px 20px;
    }
    
    .contact-cards {
        padding: 0 20px 60px;
    }
    
    .faq-section {
        padding: 60px 20px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .page-hero {
        padding: 100px 20px 60px;
    }
    
    .page-hero h1 {
        font-size: 34px;
    }
    
    .article-content {
        padding: 40px 20px 80px;
    }
    
    .article-content h2 {
        font-size: 26px;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
    
    .about-story {
        padding: 60px 20px;
        gap: 40px;
    }
    
    .about-story-content h2 {
        font-size: 28px;
    }
    
    .about-story-image img {
        height: 300px;
    }
    
    .values-section {
        padding: 60px 20px;
    }
    
    .policy-content {
        padding: 40px 20px 80px;
    }
    
    .footer-content {
        padding: 60px 20px 30px;
    }
    
    .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-text {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
