* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #666;
    --accent-color: #999;
    --bg-color: #ffffff;
    --text-color: #2c2c2c;
    --border-color: #e0e0e0;
    --hover-color: #1a1a1a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.disclaimer {
    background-color: #fff3cd;
    border-bottom: 1px solid #ffc107;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
    color: #856404;
}

.header {
    background-color: #000000;
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: none;
}

.header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
}

.logo {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    left: -18px;
    bottom: 6px;
    width: 10px;
    height: 10px;
    background-color: #ffffff;
    border-radius: 0;
}

.nav {
    display: flex;
    gap: 60px;
    align-items: center;
}

.nav-left {
    justify-content: flex-start;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s ease;
    font-weight: 400;
}

.nav-link:hover {
    opacity: 0.7;
}

.nav-link::after {
    display: none;
}

.hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px;
}

.hero-images-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.flying-image {
    position: absolute;
    width: 300px;
    height: 400px;
    opacity: 0.15;
    border-radius: 8px;
    overflow: hidden;
    pointer-events: none;
}

.flying-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flying-image-1 {
    top: 10%;
    left: -20%;
    animation: flyRight1 20s linear infinite;
}

.flying-image-2 {
    top: 30%;
    right: -20%;
    animation: flyLeft1 25s linear infinite;
    animation-delay: -5s;
}

.flying-image-3 {
    top: 60%;
    left: -20%;
    animation: flyRight2 22s linear infinite;
    animation-delay: -10s;
}

.flying-image-4 {
    bottom: 10%;
    right: -20%;
    animation: flyLeft2 18s linear infinite;
    animation-delay: -15s;
}

.flying-image-5 {
    top: 50%;
    left: -20%;
    animation: flyRight3 24s linear infinite;
    animation-delay: -8s;
}

@keyframes flyRight1 {
    0% {
        transform: translateX(0) translateY(0) rotate(5deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateX(120vw) translateY(-50px) rotate(-5deg);
        opacity: 0;
    }
}

@keyframes flyLeft1 {
    0% {
        transform: translateX(0) translateY(0) rotate(-8deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateX(-120vw) translateY(30px) rotate(8deg);
        opacity: 0;
    }
}

@keyframes flyRight2 {
    0% {
        transform: translateX(0) translateY(0) rotate(-3deg);
        opacity: 0;
    }
    10% {
        opacity: 0.12;
    }
    50% {
        opacity: 0.18;
    }
    90% {
        opacity: 0.12;
    }
    100% {
        transform: translateX(120vw) translateY(80px) rotate(3deg);
        opacity: 0;
    }
}

@keyframes flyLeft2 {
    0% {
        transform: translateX(0) translateY(0) rotate(6deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    50% {
        opacity: 0.2;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateX(-120vw) translateY(-40px) rotate(-6deg);
        opacity: 0;
    }
}

@keyframes flyRight3 {
    0% {
        transform: translateX(0) translateY(0) rotate(-4deg);
        opacity: 0;
    }
    10% {
        opacity: 0.13;
    }
    50% {
        opacity: 0.19;
    }
    90% {
        opacity: 0.13;
    }
    100% {
        transform: translateX(120vw) translateY(-60px) rotate(4deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 4px;
    margin-bottom: 30px;
    line-height: 1.1;
    text-transform: uppercase;
}

.hero-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-category {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
}

.hero-separator {
    color: #666;
    font-size: 18px;
}

.hero-description {
    font-size: 20px;
    line-height: 1.8;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    background-color: #000000;
    color: #ffffff;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.about-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease;
}

.about-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-icon svg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.about-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.about-main-heading {
    animation: fadeInUp 0.8s ease 0.4s both;
}

.about-subtitle {
    animation: fadeInUp 0.8s ease 0.6s both;
}

.about-blocks {
    animation: fadeInUp 0.8s ease 0.8s both;
}

.about-block {
    animation: fadeInUp 0.6s ease both;
}

.about-block:nth-child(1) {
    animation-delay: 1s;
}

.about-block:nth-child(2) {
    animation-delay: 1.2s;
}

.about-block:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-title-line {
    width: 60px;
    height: 2px;
    background-color: #FF6B35;
}

.about-section-title {
    font-size: 18px;
    font-weight: 500;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-main-heading {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.about-subtitle {
    font-size: 18px;
    text-align: center;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

.about-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-block {
    background-color: #1a1a1a;
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.about-block-line {
    width: 50px;
    height: 3px;
    background-color: #FF6B35;
    margin-bottom: 25px;
}

.about-block-title {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.about-block-text {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
}

.blur-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-color: #000000;
    overflow: hidden;
    cursor: none;
}

.blur-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blur-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(20px);
    transform: scale(1.1);
}

.blur-image-clear {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: mask 0.1s ease, -webkit-mask 0.1s ease;
}

.blur-overlay {
    display: none;
}

.blur-cursor {
    display: none;
}


.blur-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 8;
    pointer-events: none;
}

.blur-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    z-index: 8;
    pointer-events: none;
}

.blur-section:hover .blur-cursor {
    opacity: 1;
}

.blur-content {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    pointer-events: none;
}

.blur-title {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.blur-subtitle {
    font-size: 20px;
    color: #cccccc;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.blur-tags {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.blur-tag {
    padding: 10px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #ffffff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-content {
    padding: 60px 0;
    min-height: calc(100vh - 300px);
}

.page-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 18px;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.article-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.article-card:nth-child(1) {
    animation-delay: 0.1s;
}

.article-card:nth-child(2) {
    animation-delay: 0.2s;
}

.article-card:nth-child(3) {
    animation-delay: 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-img {
    transform: scale(1.1);
}

.article-content {
    padding: 30px;
}

.article-date {
    font-size: 12px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-category {
    font-size: 12px;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 15px;
}

.article-title {
    margin: 20px 0;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
}

.article-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-title a:hover {
    color: var(--hover-color);
}

.article-excerpt {
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: margin-left 0.3s ease;
    display: inline-block;
}

.read-more:hover {
    margin-left: 5px;
}

.article-page {
    width: 100%;
    padding: 0;
    margin: 0;
}

.article-header-section {
    background-color: #000000;
    color: #ffffff;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.article-header {
    margin-bottom: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.article-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.6s ease;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

.article-meta {
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
}

.article-content-wrapper {
    display: grid;
    grid-template-columns: 40% 60%;
    position: relative;
    min-height: 200vh;
    background-color: #ffffff;
}

.sticky-image-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
    z-index: 5;
}

.sticky-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.sticky-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.article-content-scroll {
    padding: 80px 60px;
    background-color: #ffffff;
    position: relative;
    z-index: 5;
}

.article-content-scroll::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #e0e0e0, transparent);
}

.article-body {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
}

/* Базовые стили для элементов статьи с анимацией при скролле */
.article-body p,
.article-body h1,
.article-body h2,
.article-body h3,
.article-body blockquote {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.article-body h1 {
    font-size: 36px;
    font-weight: 800;
    margin: 60px 0 25px;
    color: #000000;
    letter-spacing: 0.5px;
    border-bottom: 3px solid #000000;
    padding-bottom: 15px;
}

.article-body h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: #1a1a1a;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #333333;
    padding-bottom: 12px;
}

.article-body h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 35px 0 15px;
    color: #2c2c2c;
    letter-spacing: 0.3px;
    border-left: 4px solid #000000;
    padding-left: 15px;
}

.article-body p {
    margin-bottom: 25px;
}

/* Класс для проявления элементов при скролле */
.article-body p.fade-in,
.article-body h1.fade-in,
.article-body h2.fade-in,
.article-body h3.fade-in,
.article-body blockquote.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Стили для цитат (blockquote) */
.article-body blockquote {
    margin: 35px 0;
    padding: 25px 30px 25px 50px;
    background-color: #ffffff;
    border-left: 6px solid #000000;
    font-size: 18px;
    line-height: 1.8;
    color: #1a1a1a;
    font-style: italic;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.article-body blockquote::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background-color: #000000;
}

.article-body blockquote p {
    margin-bottom: 0;
    opacity: 1;
    transform: none;
}

.article-body blockquote p:last-child {
    margin-bottom: 0;
}

.article-featured-img {
    display: none;
}

/* Блок подписки на рассылку */
.newsletter-subscribe {
    position: relative;
    margin: 60px 0;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.newsletter-subscribe.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.newsletter-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 400px;
    text-align: center;
}

.newsletter-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.newsletter-description {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    width: 100%;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.newsletter-input {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ffffff;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-input::placeholder {
    color: #666;
}

.newsletter-button {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #000000;
    border: 2px solid #ffffff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.newsletter-button:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.newsletter-button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .newsletter-content {
        padding: 60px 30px;
        min-height: 350px;
    }

    .newsletter-title {
        font-size: 28px;
    }

    .newsletter-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
    }

    .newsletter-input {
        min-width: 100%;
    }

    .newsletter-button {
        width: 100%;
    }
}

.footer {
    background-color: #f8f8f8;
    border-top: 1px solid var(--border-color);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--accent-color);
    font-size: 14px;
}

.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: rgba(44, 44, 44, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    transition: bottom 0.4s ease;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background-color: #45a049;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-header {
    text-align: center;
    padding: 60px 0;
    background-color: #f8f8f8;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 60px;
    line-height: 1.8;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.page-content p {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: var(--hover-color);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .header {
        padding: 20px 0;
    }

    .header .container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .nav {
        gap: 30px;
        justify-content: center;
    }

    .nav-left,
    .nav-right {
        justify-content: center;
    }

    .logo {
        font-size: 36px;
        order: -1;
    }

    .logo::before {
        left: -12px;
        bottom: 6px;
        width: 10px;
        height: 10px;
    }

    .hero-section {
        min-height: 80vh;
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 2px;
        margin-bottom: 20px;
    }

    .hero-categories {
        gap: 10px;
        margin-bottom: 30px;
    }

    .hero-category {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .flying-image {
        width: 200px;
        height: 280px;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .article-header-section {
        padding: 60px 20px;
    }

    .article-header h1 {
        font-size: 32px;
    }

    .article-content-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .sticky-image-container {
        position: relative;
        height: 60vh;
        min-height: 400px;
    }

    .article-content-scroll {
        padding: 40px 20px;
    }

    .article-body {
        font-size: 16px;
    }

    .article-body h2 {
        font-size: 28px;
    }

    .article-body h3 {
        font-size: 20px;
    }

    .about-section {
        padding: 60px 20px;
    }

    .about-main-heading {
        font-size: 36px;
    }

    .about-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .about-blocks {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-block {
        padding: 30px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .logo {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 70vh;
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-categories {
        flex-direction: column;
        gap: 8px;
    }

    .hero-separator {
        display: none;
    }

    .hero-description {
        font-size: 14px;
    }

    .flying-image {
        width: 150px;
        height: 200px;
    }

    .main-content {
        padding: 40px 0;
    }

    .article-card {
        margin: 0 10px;
    }

    .article-content {
        padding: 20px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-title {
        font-size: 36px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .about-section {
        padding: 40px 15px;
    }

    .about-main-heading {
        font-size: 28px;
    }

    .about-subtitle {
        font-size: 14px;
    }

    .about-block-title {
        font-size: 20px;
    }

    .about-block-text {
        font-size: 14px;
    }

    .blur-section {
        min-height: 70vh;
    }

    .blur-title {
        font-size: 42px;
        letter-spacing: 2px;
    }

    .blur-subtitle {
        font-size: 16px;
    }

    .blur-cursor {
        width: 150px;
        height: 150px;
    }
}
