body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #FFF9E6;
        }
        header {
            background-color: #FF6B35;
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-weight: 500;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        h1 {
            color: #FF6B35;
            font-size: 32px;
            margin-bottom: 20px;
            border-bottom: 2px solid #FF6B35;
            padding-bottom: 10px;
        }
    h2 {
        color: #E85A4F;
        font-size: 24px;
        margin: 30px 0 15px;
    }
    h3 {
        color: #D83A56;
        font-size: 20px;
        margin: 25px 0 10px;
    }
    .btn {
        display: inline-block;
        background-color: #FF6B35;
        color: white;
        padding: 12px 25px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: bold;
        margin: 10px 0;
        transition: background-color 0.3s;
    }
    .btn:hover {
        background-color: #E85A4F;
    }
    .image-container {
        text-align: center;
        margin: 30px 0;
    }
    .image-container img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    footer {
        background-color: #333;
        color: white;
        padding: 20px;
        margin-top: 40px;
        border-radius: 8px;
    }
    .tags {
        margin: 20px 0;
    }
    .tag {
        display: inline-block;
        background-color: #555;
        color: white;
        padding: 5px 10px;
        border-radius: 20px;
        margin: 5px;
        font-size: 14px;
        text-decoration: none;
    }
    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }
        nav {
            flex-direction: column;
            align-items: flex-start;
            display: none;
        }
        nav.active {
            display: flex;
        }
        nav a {
            margin: 5px 0;
        }
        body {
            padding: 10px;
        }
        h1 {
            font-size: 26px;
        }
        h2 {
            font-size: 22px;
        }
    }
