 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', 'Times New Roman', serif;
        }

        body {
            background-color: #fff;
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: linear-gradient(135deg, #e6e2d1 0%, #f1eee2 100%);
            padding: 20px 0;
            border-bottom: 1px solid #d4d0c0;
            width: 100%;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 15px;
        }

        .journal-title {
            font-size: 2.5em;
            font-weight: bold;
            color: #2c2c2c;
            letter-spacing: 1px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .journal-title span {
            color: #8a7f5e;
        }

        .journal-meta {
            display: flex;
            gap: 20px;
            font-size: 0.9em;
            color: #555;
        }

        .journal-info {
            text-align: center;
        }

        .journal-info h2 {
            font-size: 1.8em;
            margin-bottom: 10px;
            color: #2c2c2c;
        }

        .journal-info p {
            margin: 5px 0;
        }

        /* Navigation */
        nav {
            background-color: #fff;
            border-top: 1px solid #e6e2d1;
            border-bottom: 1px solid #e6e2d1;
            width: 100%;
            box-shadow: 0 2px 5px rgba(0,0,0,0.03);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .main-nav {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }

        .main-nav li {
            margin-right: 25px;
            position: relative;
        }

        .main-nav a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            padding: 15px 0;
            display: block;
            transition: color 0.3s;
        }

        .main-nav a:hover {
            color: #8a7f5e;
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #8a7f5e;
            transition: width 0.3s;
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        .search-box {
            display: flex;
            margin: 10px 0;
        }

        .search-box input {
            padding: 8px 12px;
            border: 1px solid #e6e2d1;
            border-right: none;
            width: 200px;
            transition: border-color 0.3s;
        }

        .search-box input:focus {
            outline: none;
            border-color: #8a7f5e;
        }

        .search-box button {
            padding: 8px 15px;
            background: #e6e2d1;
            border: 1px solid #e6e2d1;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .search-box button:hover {
            background: #d4d0c0;
        }

        /* Main Content Layout */
        .main-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin: 40px 0;
            flex: 1;
            align-items: stretch; /* Добавлено для выравнивания высоты */
        }

        .content-main {
            display: flex;
            flex-direction: column;
            min-height: 100%; /* Добавлено для выравнивания высоты */
        }

        .hero {
            background: linear-gradient(135deg, #f8f7f3 0%, #f0ede5 100%);
            padding: 50px;
            border-radius: 5px;
            margin-bottom: 30px;
            width: 100%;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 4px solid #8a7f5e;
            flex: 1; /* Добавлено для выравнивания высоты */
        }

        .hero h2 {
            text-align: center;
            margin-bottom: 25px;
            color: #2c2c2c;
            font-size: 1.8em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .hero h2 i {
            color: #8a7f5e;
        }

        .highlight-box {
            background: linear-gradient(135deg, #e6e2d1 0%, #d4d0c0 100%);
            padding: 30px;
            margin: 30px 0;
            border-radius: 5px;
            font-style: italic;
            text-align: center;
            font-size: 1.1em;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            position: relative;
        }

        .highlight-box::before {
            content: '"';
            font-size: 4em;
            color: #8a7f5e;
            opacity: 0.3;
            position: absolute;
            top: 10px;
            left: 20px;
            font-family: Georgia, serif;
        }

        /* Info Cards Section */
        .info-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }

        .info-card {
            background: linear-gradient(135deg, #f8f7f3 0%, #f0ede5 100%);
            padding: 25px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
            border-top: 3px solid #8a7f5e;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .info-card h3 {
            color: #2c2c2c;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.3em;
        }

        .info-card h3 i {
            color: #8a7f5e;
        }

        .info-card p {
            color: #555;
            margin-bottom: 15px;
        }

        .info-card ul {
            list-style-type: none;
            padding-left: 0;
        }

        .info-card li {
            padding: 5px 0;
            color: #555;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .info-card li i {
            color: #8a7f5e;
            font-size: 0.8em;
        }

        /* Sidebar Styles */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
            height: 100%; /* Добавлено для выравнивания высоты */
        }

        .current-issue {
            background: linear-gradient(135deg, #f8f7f3 0%, #f0ede5 100%);
            padding: 25px;
            text-align: center;
            border-radius: 5px;
            border: 2px solid #e6e2d1;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            flex: 1; /* Добавлено для выравнивания высоты */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Центрируем содержимое по вертикали */
        }

        .current-issue:hover {
            transform: translateY(-5px);
        }

        .current-issue h3 {
            margin-bottom: 20px;
            color: #2c2c2c;
            font-size: 1.5em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .current-issue h3 i {
            color: #8a7f5e;
        }

        .issue-cover {
            width: 100%;
            max-width: 200px;
            height: 280px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #e6e2d1 0%, #d4d0c0 100%);
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
            border: 1px solid #d4d0c0;
        }

        .cover-title {
            font-size: 1.8em;
            font-weight: bold;
            color: #2c2c2c;
            text-align: center;
            padding: 0 10px;
        }

        .cover-subtitle {
            font-size: 1em;
            color: #8a7f5e;
            margin-top: 10px;
            text-align: center;
        }

        .cover-badge {
            position: absolute;
            top: 10px;
            right: 10px;
            background: #8a7f5e;
            color: white;
            padding: 5px 10px;
            border-radius: 3px;
            font-size: 0.8em;
            font-weight: bold;
        }

        .issue-number {
            font-size: 1.8em;
            font-weight: bold;
            color: #2c2c2c;
            margin: 15px 0;
            background: #e6e2d1;
            padding: 10px;
            border-radius: 5px;
            display: inline-block;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #8a7f5e;
            color: white;
            padding: 12px 25px;
            margin-top: 15px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background-color 0.3s;
            font-size: 1em;
        }

        .download-btn:hover {
            background-color: #756b4f;
        }

        .editor-card {
            background: linear-gradient(135deg, #f8f7f3 0%, #f0ede5 100%);
            padding: 30px;
            border-radius: 5px;
            border: 1px solid #e6e2d1;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            flex: 1; /* Добавлено для выравнивания высоты */
            display: flex;
            flex-direction: column;
            justify-content: center; /* Центрируем содержимое по вертикали */
        }

        .editor-card h3 {
            margin-bottom: 20px;
            color: #2c2c2c;
            font-size: 1.5em;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .editor-card h3 i {
            color: #8a7f5e;
        }

        .editor-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .editor-photo {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, #e6e2d1 0%, #d4d0c0 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #777;
            font-style: italic;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 3px solid #8a7f5e;
        }

        .editor-photo i {
            font-size: 3em;
            color: #8a7f5e;
        }

        .editor-details {
            text-align: center;
        }

        .editor-name {
            font-weight: bold;
            font-size: 1.3em;
            margin-bottom: 10px;
            color: #2c2c2c;
        }

        .editor-details p {
            margin: 5px 0;
            color: #555;
        }

        /* Carousel Styles */
        .partners {
            margin: 50px 0;
            padding: 40px 0;
            border-top: 1px solid #e6e2d1;
            border-bottom: 1px solid #e6e2d1;
            position: relative;
            overflow: hidden;
            width: 100%;
            background: linear-gradient(135deg, #f8f7f3 0%, #f0ede5 100%);
        }

        .partners h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #2c2c2c;
            font-size: 1.8em;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .partners h2 i {
            color: #8a7f5e;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 140px;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            align-items: center;
            animation: scroll 30s linear infinite;
        }

        .carousel-track:hover {
            animation-play-state: paused;
        }

        .partner-logo {
            flex-shrink: 0;
            width: 220px;
            height: 100px;
            margin: 0 25px;
            background: white;
            border: 1px solid #e6e2d1;
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #555;
            transition: transform 0.3s, box-shadow 0.3s;
            font-size: 1.1em;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            padding: 10px;
        }

        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }

        .partner-logo i {
            font-size: 1.5em;
            margin-bottom: 5px;
            color: #8a7f5e;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-220px * 8 - 25px * 8));
            }
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #e6e2d1 0%, #d4d0c0 100%);
            padding: 50px 0 20px;
            margin-top: 50px;
            width: 100%;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            margin-bottom: 20px;
            color: #2c2c2c;
            font-size: 1.3em;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .footer-section h3 i {
            color: #8a7f5e;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a:hover {
            color: #8a7f5e;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #d4d0c0;
            font-size: 0.9em;
            color: #555;
        }

        /* Stats Section */
        .stats {
            display: flex;
            justify-content: space-around;
            margin: 40px 0;
            flex-wrap: wrap;
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 20px;
            background: #f8f7f3;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            flex: 1;
            min-width: 200px;
            transition: transform 0.3s;
        }

        .stat-item:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 2.5em;
            font-weight: bold;
            color: #8a7f5e;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1.1em;
            color: #555;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .container {
                padding: 0 30px;
            }

            .main-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .sidebar {
                order: -1;
            }

            .partner-logo {
                width: 200px;
                margin: 0 20px;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-200px * 8 - 20px * 8));
                }
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }

            .journal-title {
                font-size: 2em;
            }

            .journal-meta {
                justify-content: center;
                margin-top: 10px;
                flex-direction: column;
                gap: 10px;
            }

            .nav-container {
                flex-direction: column;
            }

            .main-nav {
                justify-content: center;
                margin-bottom: 15px;
            }

            .main-nav li {
                margin: 0 10px;
            }

            .search-box input {
                width: 150px;
            }

            .hero {
                padding: 30px 20px;
            }

            .hero h2 {
                font-size: 1.5em;
            }

            .current-issue h3, .editor-card h3 {
                font-size: 1.3em;
            }

            .issue-cover {
                max-width: 180px;
                height: 250px;
            }

            .issue-number {
                font-size: 1.5em;
            }

            .partner-logo {
                width: 180px;
                height: 90px;
                margin: 0 15px;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-180px * 8 - 15px * 8));
                }
            }

            .info-cards {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }

            .journal-title {
                font-size: 1.8em;
            }

            .main-nav {
                flex-direction: column;
                text-align: center;
                width: 100%;
            }

            .main-nav li {
                margin: 5px 0;
                width: 100%;
            }

            .main-nav a {
                padding: 10px;
            }

            .search-box {
                width: 100%;
                justify-content: center;
            }

            .search-box input {
                width: 70%;
            }

            .hero {
                padding: 20px 15px;
            }

            .highlight-box {
                padding: 20px 15px;
            }

            .current-issue, .editor-card {
                padding: 20px 15px;
            }

            .issue-cover {
                max-width: 150px;
                height: 210px;
            }

            .cover-title {
                font-size: 1.5em;
            }

            .download-btn {
                padding: 10px 20px;
            }

            .editor-photo {
                width: 120px;
                height: 120px;
            }

            .partner-logo {
                width: 150px;
                height: 80px;
                margin: 0 10px;
                font-size: 0.9em;
            }

            @keyframes scroll {
                0% {
                    transform: translateX(0);
                }
                100% {
                    transform: translateX(calc(-150px * 8 - 10px * 8));
                }
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .stats {
                flex-direction: column;
            }
        }