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

        body {
            font-family: "PT Sans", Arial, Helvetica, sans-serif;
            font-size: 18px;
            line-height: 1.6;
            color: #000;
            background-color: #fff;
            -webkit-font-smoothing: antialiased;
        }

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

        /* Header */
        .header {
            background-color: #b12828;
            padding: 15px 0;
            border-bottom: 3px solid #8b1f1f;
        }

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

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

        .nav {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            text-transform: uppercase;
            transition: color 0.3s ease;
        }

        .nav a:hover {
            color: #faf56b;
        }

        /* Mobile Navigation */
        @media (max-width: 768px) {
            .header .container {
                flex-direction: column;
                gap: 20px;
            }
            
            .nav {
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }
        }

        /* Main Content */
        .main-content {
            background: linear-gradient(135deg, #5eb4df 0%, #4a9fd1 100%);
            padding: 60px 0;
            margin-bottom: 40px;
        }

        h1 {
            font-size: 3.5em;
            color: #fff;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            text-align: center;
            margin-bottom: 40px;
            font-weight: bold;
        }

        article {
            background: #fff;
            padding: 40px;
            margin: 40px auto;
            max-width: 900px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        article h2 {
            font-size: 2em;
            color: #1d50a4;
            margin-bottom: 20px;
            font-weight: bold;
        }

        article h3 {
            font-size: 1.5em;
            color: #434343;
            margin: 25px 0 15px;
            font-weight: bold;
        }

        article h4 {
            font-size: 1.25em;
            color: #434343;
            margin: 20px 0 10px;
            font-weight: bold;
        }

        article p {
            margin-bottom: 20px;
            line-height: 1.7;
            color: #333;
        }

        article ul, article ol {
            margin: 20px 0 20px 30px;
        }

        article li {
            margin-bottom: 8px;
            line-height: 1.6;
        }

        .transition-section {
            background: #f8f9fa;
            padding: 40px;
            margin: 40px auto;
            max-width: 900px;
            border-left: 5px solid #0e69ad;
            border-radius: 5px;
        }

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

        /* Links Section */
        .links-section {
            background: #fff;
            padding: 50px 40px;
            margin: 40px auto;
            max-width: 900px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border-top: 4px solid #0e69ad;
        }

        .links-section h3 {
            font-size: 1.8em;
            color: #0e69ad;
            margin-bottom: 25px;
            font-weight: bold;
            border-bottom: 2px solid #e0e0e0;
            padding-bottom: 10px;
        }

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

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

        .links-section a {
            display: block;
            padding: 12px 20px;
            color: #0e69ad;
            text-decoration: none;
            border: 1px solid #e0e0e0;
            border-radius: 5px;
            transition: all 0.3s ease;
            background: #fafafa;
        }

        .links-section a:hover {
            background: #0e69ad;
            color: #fff;
            border-color: #0e69ad;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(14,105,173,0.3);
        }

        /* Footer */
        .footer {
            background-color: #3e80a1;
            color: #fff;
            padding: 40px 0 20px;
            border-top: 3px solid #2d6581;
        }

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

        .footer-col h4 {
            color: #fff;
            font-size: 1.2em;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .footer-col p {
            color: #b8d4e3;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .footer-col a {
            color: #fff;
            text-decoration: underline;
            transition: color 0.3s ease;
        }

        .footer-col a:hover {
            color: #faf56b;
        }

        .footer-bottom {
            border-top: 1px solid #285a73;
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 14px;
            color: #b8d4e3;
            margin-bottom: 10px;
        }

        .footer-bottom a {
            color: #fff;
            text-decoration: underline;
            margin: 0 10px;
        }

        .footer-bottom a:hover {
            color: #faf56b;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5em;
                padding: 0 20px;
            }

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

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

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

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

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