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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #FABE83 0%, #f5a96d 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
        }

        h1 {
            text-align: center;
            font-size: 3rem;
            color: #990033;
            margin: 40px 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
            font-weight: 300;
            letter-spacing: 2px;
        }

        article {
            max-width: 1200px;
            margin: 0 auto 60px;
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        article h2 {
            color: #990033;
            margin: 30px 0 15px;
            font-size: 1.8rem;
            font-weight: 400;
        }

        article h3 {
            color: #990033;
            margin: 25px 0 12px;
            font-size: 1.4rem;
            font-weight: 400;
        }

        article p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.05rem;
            color: #444;
        }

        section, div.transition {
            max-width: 1200px;
            margin: 0 auto 40px;
            background: rgba(255, 255, 255, 0.95);
            padding: 30px 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        section p, div.transition p {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: #444;
            text-align: justify;
        }

        .links-section {
            max-width: 1200px;
            margin: 0 auto 60px;
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        }

        .links-section h3 {
            color: #990033;
            margin: 30px 0 20px;
            font-size: 1.6rem;
            font-weight: 400;
            border-bottom: 2px solid #FABE83;
            padding-bottom: 10px;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

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

        .links-section li {
            padding: 0;
        }

        .links-section a {
            color: #990033;
            text-decoration: none;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 20px;
        }

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

        .links-section a:hover {
            color: #cc0044;
            transform: translateX(5px);
        }

        .links-section a:hover:before {
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            h1 {
                font-size: 2rem;
                margin: 20px 0;
            }

            article, section, div.transition, .links-section {
                padding: 25px;
                margin-bottom: 30px;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }

            article p, section p, div.transition p, .links-section a {
                font-size: 1rem;
            }

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

            .links-section h3 {
                font-size: 1.3rem;
                margin: 20px 0 15px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
                letter-spacing: 1px;
            }

            article, section, div.transition, .links-section {
                padding: 20px;
                border-radius: 10px;
            }
        }
    