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

        body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 14px;
            line-height: 1.65em;
            color: #666;
            background-color: #fff;
        }

        .container {
            max-width: 1030px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background-color: #000;
            padding: 15px 0;
            border-bottom: 1px solid #e1e1e1;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo {
            color: #fff;
            font-size: 24px;
            font-weight: 600;
            text-decoration: none;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            padding: 8px 16px;
            display: block;
            font-size: 14px;
            transition: all 0.3s;
            border-radius: 3px;
        }

        nav ul li a:hover {
            background-color: #95be54;
        }

        .hero {
            background-color: #054a72;
            color: #fff;
            padding: 40px 0;
            margin-bottom: 40px;
        }

        .hero-content {
            max-width: 80%;
            margin-left: auto;
            padding: 20px;
            background-color: #95be54;
        }

        .hero h1 {
            font-size: 28px;
            font-weight: 600;
            line-height: 1.3em;
            margin-bottom: 0;
        }

        main {
            padding: 30px 0;
        }

        article {
            max-width: 800px;
            margin: 0 auto 40px;
        }

        article h1 {
            color: #054a72;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 20px;
            line-height: 1.3em;
        }

        article h2 {
            color: #054a72;
            font-size: 24px;
            font-weight: 600;
            margin: 30px 0 15px;
            line-height: 1.3em;
        }

        article h3 {
            color: #054a72;
            font-size: 20px;
            font-weight: 600;
            margin: 25px 0 12px;
            line-height: 1.3em;
        }

        article p {
            margin: 15px 0;
            line-height: 1.7em;
        }

        article a {
            color: #054a72;
            text-decoration: none;
        }

        article a:hover {
            color: #8bba34;
        }

        .transition-section {
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .transition-section p {
            margin: 15px 0;
            line-height: 1.7em;
        }

        .links-section {
            background-color: #f8f8f8;
            padding: 40px 0;
            border-top: 1px solid #e1e1e1;
            border-bottom: 1px solid #e1e1e1;
        }

        .links-section h2 {
            color: #054a72;
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
            text-align: center;
        }

        .links-section h3 {
            color: #054a72;
            font-size: 18px;
            font-weight: 600;
            margin: 25px 0 12px;
        }

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 20px;
            margin-bottom: 30px;
        }

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

        .links-section ul li a {
            color: #054a72;
            text-decoration: none;
            display: block;
            padding: 8px 0;
            transition: color 0.3s;
        }

        .links-section ul li a:hover {
            color: #8bba34;
        }

        .links-section ul li a:before {
            content: "→ ";
            margin-right: 5px;
        }

        footer {
            background-color: #00324f;
            color: #fff;
            padding: 30px 0;
            margin-top: 40px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        footer h2 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        footer p {
            color: #8099A7;
            line-height: 1.6em;
            margin: 8px 0;
        }

        .copyright {
            background-color: #054a72;
            color: #82A5B9;
            padding: 15px 0;
            text-align: center;
            font-size: 11px;
            margin-top: 20px;
        }

        @media only screen and (max-width: 768px) {
            .header-content {
                flex-direction: column;
                gap: 15px;
            }

            nav ul {
                flex-direction: column;
                width: 100%;
                gap: 5px;
            }

            nav ul li a {
                text-align: center;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero h1 {
                font-size: 22px;
            }

            article h1 {
                font-size: 24px;
            }

            article h2 {
                font-size: 20px;
            }

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

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

        @media only screen and (max-width: 479px) {
            .container {
                padding: 0 15px;
            }

            .hero {
                padding: 25px 0;
            }

            .hero h1 {
                font-size: 18px;
            }

            article h1 {
                font-size: 20px;
            }

            .links-section {
                padding: 25px 0;
            }
        }
    