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

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: #3e4555;
            line-height: 1.6;
            background-color: #ffffff;
            overflow-x: hidden;
        }

        .header {
            background: linear-gradient(135deg, #7bcde4 0%, #87715a 100%);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .header-content {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            text-decoration: none;
        }

        .navbar {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .navbar a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            transition: opacity 0.3s ease;
        }

        .navbar a:hover {
            opacity: 0.8;
        }

        .container {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .hero-section {
            background: linear-gradient(135deg, rgba(123, 205, 228, 0.1) 0%, rgba(135, 113, 90, 0.1) 100%);
            padding: 60px 0;
            text-align: center;
        }

        h1 {
            font-size: 42px;
            font-weight: 700;
            color: #3e4555;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        .content-section {
            padding: 60px 0;
        }

        article {
            background: #ffffff;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(115, 128, 157, 0.1);
            margin-bottom: 40px;
        }

        article h2 {
            font-size: 30px;
            color: #3e4555;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        article h3 {
            font-size: 24px;
            color: #3e4555;
            margin-top: 25px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        article h4 {
            font-size: 21px;
            color: #3e4555;
            margin-top: 20px;
            margin-bottom: 10px;
            font-weight: 600;
        }

        article h5 {
            font-size: 18px;
            color: #3e4555;
            margin-top: 18px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        article h6 {
            font-size: 16px;
            color: #3e4555;
            margin-top: 15px;
            margin-bottom: 8px;
            font-weight: 600;
        }

        article p {
            color: #8d97ad;
            margin-bottom: 20px;
            font-size: 16px;
            line-height: 1.8;
        }

        article ul, article ol {
            margin: 20px 0;
            padding-left: 30px;
            color: #8d97ad;
        }

        article li {
            margin-bottom: 10px;
            line-height: 1.8;
        }

        .transition-section {
            background: #f4f8fa;
            padding: 40px;
            border-radius: 8px;
            margin-bottom: 40px;
        }

        .transition-section p {
            color: #8d97ad;
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        {% if links %}
        .links-section {
            background: #ffffff;
            padding: 50px 40px;
            border-radius: 8px;
            box-shadow: 0 0 30px rgba(115, 128, 157, 0.1);
        }

        .links-section h3 {
            font-size: 22px;
            color: #3e4555;
            margin-bottom: 20px;
            font-weight: 600;
            padding-bottom: 10px;
            border-bottom: 2px solid #7bcde4;
        }

        .links-section ul {
            list-style: none;
            padding: 0;
            margin: 0 0 40px 0;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .links-section ul li {
            margin: 0;
        }

        .links-section ul li a {
            color: #7bcde4;
            text-decoration: none;
            font-size: 15px;
            display: block;
            padding: 10px 15px;
            background: #f4f8fa;
            border-radius: 4px;
            transition: all 0.3s ease;
            border-left: 3px solid #7bcde4;
        }

        .links-section ul li a:hover {
            background: #7bcde4;
            color: #ffffff;
            transform: translateX(5px);
        }
        {% endif %}

        .footer {
            background: #3e4555;
            color: #8d97ad;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-content {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
            text-align: center;
        }

        .footer p {
            margin: 10px 0;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 32px;
            }

            .navbar {
                gap: 15px;
                margin-top: 15px;
            }

            .header-content {
                justify-content: center;
            }

            article {
                padding: 25px;
            }

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 22px;
            }

            .hero-section {
                padding: 40px 0;
            }

            .content-section {
                padding: 40px 0;
            }

            {% if links %}
            .links-section ul {
                grid-template-columns: 1fr;
            }

            .links-section {
                padding: 30px 20px;
            }
            {% endif %}

            .transition-section {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 28px;
            }

            .logo {
                font-size: 24px;
            }

            .navbar {
                width: 100%;
                justify-content: center;
            }

            article {
                padding: 20px;
            }
        }
    