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

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f7faff;
        }

        header {
            background: linear-gradient(160deg, #0571D2 41%, #1a1a1a 78%);
            padding: 20px 0;
            position: relative;
            z-index: 100;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            width: 120px;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 30px;
            align-items: center;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            font-size: 15px;
            transition: all 0.3s;
            position: relative;
        }

        nav ul li a:hover {
            color: #f0f0f0;
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #fff;
            transition: width 0.3s;
        }

        nav ul li a:hover::after {
            width: 100%;
        }

        .hero-section {
            background: linear-gradient(160deg, #0571D2 41%, #1a1a1a 78%);
            padding: 80px 20px 60px;
            text-align: center;
            color: #fff;
            margin-top: -20px;
        }

        .hero-section h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 20px;
            line-height: 1.3;
        }

        main {
            max-width: 1200px;
            margin: 60px auto;
            padding: 0 20px;
        }

        article {
            background: #fff;
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 50px;
        }

        article h2 {
            color: #0571D2;
            font-size: 32px;
            margin-bottom: 20px;
            font-weight: bold;
        }

        article h3 {
            color: #0571D2;
            font-size: 24px;
            margin-top: 30px;
            margin-bottom: 15px;
            font-weight: bold;
        }

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

        .transition-section {
            background: #fff;
            padding: 40px 50px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            margin-bottom: 50px;
        }

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

        {% if links %}
        .links-section {
            background: #fff;
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        }

        .links-section h2,
        .links-section h3 {
            color: #0571D2;
            font-size: 28px;
            margin-bottom: 25px;
            font-weight: bold;
        }

        .links-section h3 {
            font-size: 22px;
            margin-top: 30px;
        }

        .links-section ul {
            list-style: none;
            columns: 2;
            column-gap: 40px;
            margin-bottom: 30px;
        }

        .links-section ul li {
            margin-bottom: 12px;
            break-inside: avoid;
        }

        .links-section ul li a {
            color: #0571D2;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
            display: inline-block;
            position: relative;
            padding-left: 15px;
        }

        .links-section ul li a::before {
            content: '→';
            position: absolute;
            left: 0;
            transition: transform 0.3s;
        }

        .links-section ul li a:hover {
            color: #003d7a;
        }

        .links-section ul li a:hover::before {
            transform: translateX(3px);
        }
        {% endif %}

        footer {
            background-color: #03386E;
            color: #fff;
            padding: 70px 20px;
            margin-top: 80px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .footer-column p,
        .footer-column ul {
            font-size: 14px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.65);
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            background-color: #fff;
            border-top: 1px solid rgba(255, 255, 255, 0.19);
            padding: 20px;
            text-align: center;
            margin-top: 50px;
        }

        .footer-bottom p {
            color: #696969;
            font-size: 12px;
            font-weight: 300;
        }

        @media (max-width: 1024px) {
            .hero-section h1 {
                font-size: 36px;
            }

            article, .transition-section, .links-section {
                padding: 35px;
            }

            nav ul {
                gap: 20px;
            }
        }

        @media (max-width: 767px) {
            .header-container {
                flex-direction: column;
                gap: 15px;
            }

            nav ul {
                flex-direction: column;
                gap: 10px;
            }

            .hero-section {
                padding: 60px 20px 40px;
            }

            .hero-section h1 {
                font-size: 28px;
            }

            article, .transition-section, .links-section {
                padding: 25px;
            }

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 20px;
            }

            {% if links %}
            .links-section ul {
                columns: 1;
            }
            {% endif %}

            .footer-container {
                grid-template-columns: 1fr;
            }
        }
    