body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            background-color: #f9f9f9;
        }
        header {
            background-color: #ff6b35;
            color: white;
            padding: 20px;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .mobile-menu {
            display: none;
            font-size: 24px;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-menu {
                display: block;
            }
            .show-menu {
                display: flex !important;
                flex-direction: column;
            }
        }
        .container {
            background-color: white;
            padding: 30px;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #ff6b35;
            border-bottom: 2px solid #ff6b35;
            padding-bottom: 10px;
        }
        h2 {
            color: #006a71;
            margin-top: 30px;
        }
        h3 {
            color: #4a4a4a;
        }
        .button {
            display: inline-block;
            background-color: #ff6b35;
            color: white;
            padding: 10px 20px;
            margin: 10px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .button:hover {
            background-color: #e05a2a;
        }
        img {
            max-width: 100%;
            height: auto;
            margin: 20px 0;
            border-radius: 8px;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 20px;
            text-align: center;
            margin-top: 30px;
        }
        .tags {
            margin: 20px 0;
        }
        .tag {
            display: inline-block;
            background-color: #006a71;
            color: white;
            padding: 5px 10px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
        }
