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

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

        header {
            background-color: #fff;
            border-bottom: 1px solid #ebeaea;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        }

        .header-top {
            background-color: #f8f8f8;
            border-bottom: 1px solid #ebeaea;
            padding: 10px 0;
        }

        .header-top-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: flex-end;
            flex-wrap: wrap;
            gap: 20px;
        }

        .header-top-content a {
            color: #333;
            text-decoration: none;
            font-size: 13px;
            transition: color 0.3s;
        }

        .header-top-content a:hover {
            color: #c23245;
        }

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

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

        nav {
            display: flex;
            gap: 30px;
            align-items: center;
        }

        nav a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: color 0.3s;
        }

        nav a:hover {
            color: #c23245;
        }

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

        .hero {
            text-align: center;
            padding: 60px 20px 40px;
            background-color: #fff;
        }

        .hero-subtitle {
            color: #999;
            font-size: 22px;
            font-weight: 300;
            margin-bottom: 10px;
        }

        h1 {
            color: #c23245;
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .separator {
            width: 205px;
            height: 1px;
            background-color: #e0dede;
            margin: 30px auto;
        }

        article {
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

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

        article h2 {
            color: #333;
            font-size: 28px;
            margin: 40px 0 20px;
            font-weight: 600;
        }

        article h3 {
            color: #333;
            font-size: 22px;
            margin: 30px 0 15px;
            font-weight: 600;
        }

        .transition-section {
            max-width: 900px;
            margin: 0 auto 60px;
            padding: 0 20px;
        }

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

        .links-section {
            background-color: #f9f9f9;
            padding: 60px 20px;
            margin-top: 60px;
        }

        .links-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .links-section h2 {
            text-align: center;
            color: #333;
            font-size: 32px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .links-section .separator {
            margin: 20px auto 50px;
        }

        .links-section h3 {
            color: #c23245;
            font-size: 24px;
            margin: 40px 0 20px;
            font-weight: 600;
        }

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

        .links-section ul li {
            position: relative;
            padding-left: 20px;
        }

        .links-section ul li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #c23245;
            font-weight: bold;
        }

        .links-section ul li a {
            color: #333;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
            display: inline-block;
        }

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

        footer {
            background-color: #333;
            color: #999;
            padding: 40px 20px;
            margin-top: 80px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            font-size: 13px;
        }

        .footer-content p {
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            .header-main {
                flex-direction: column;
                gap: 20px;
            }

            nav {
                flex-direction: column;
                gap: 15px;
                width: 100%;
                text-align: center;
            }

            h1 {
                font-size: 32px;
            }

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

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

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

            .header-top-content {
                justify-content: center;
                font-size: 12px;
            }
        }

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

            .hero-subtitle {
                font-size: 16px;
            }

            .container {
                padding: 30px 15px;
            }

            article p, .transition-section p {
                font-size: 15px;
            }

            .links-section {
                padding: 40px 15px;
            }

            .links-section h2 {
                font-size: 26px;
            }

            .links-section h3 {
                font-size: 20px;
            }
        }
    