body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f9f9f9;
        }
        header {
            background-color: #1a3e72;
            color: white;
            padding: 1rem;
            text-align: center;
            position: relative;
        }
        header h1 {
            margin: 0;
            font-size: 2rem;
        }
        .logo {
            font-weight: bold;
            font-size: 2.2rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }
        nav a {
            color: white;
            margin: 0 1rem;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            position: absolute;
            right: 1rem;
            top: 1rem;
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                flex-direction: column;
                align-items: center;
                width: 100%;
                background-color: #1a3e72;
                position: absolute;
                top: 100%;
                left: 0;
            }
            nav.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
        }
        main {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        section {
            margin-bottom: 2rem;
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        h2 {
            color: #1a3e72;
            border-bottom: 2px solid #1a3e72;
            padding-bottom: 0.5rem;
            margin-top: 0;
        }
        h3 {
            color: #3a6ea5;
        }
        .btn {
            display: inline-block;
            background-color: #ff6b35;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            margin: 0.5rem 0;
        }
        .btn:hover {
            background-color: #e05a2a;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 1rem auto;
            border-radius: 8px;
        }
        footer {
            background-color: #1a3e72;
            color: white;
            text-align: center;
            padding: 1.5rem;
            margin-top: 2rem;
        }
        footer a {
            color: #ff6b35;
            text-decoration: none;
        }
        .tags {
            margin: 1rem 0;
        }
        .tag {
            display: inline-block;
            background-color: #3a6ea5;
            color: white;
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            margin: 0.2rem;
            text-decoration: none;
        }
