        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f9f7f4;
            color: #333;
            line-height: 1.8;
            font-size: 18px;
            padding-top: 80px; 
        }
        a {
            color: #4a90e2;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #d35400;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #2c3e50;
            color: white;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #f1c40f;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo a {
            color: inherit;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav ul li a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background-color: #f1c40f;
            color: #2c3e50;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: #ecf0f1;
            font-size: 0.9rem;
            color: #7f8c8d;
        }
        .breadcrumb a {
            color: #3498db;
        }
        main {
            padding: 40px 0;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 0 20px rgba(0,0,0,0.05);
            margin: 20px auto;
        }
        .content-wrapper {
            padding: 0 40px;
        }
        h1 {
            font-size: 3rem;
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
            border-bottom: 3px solid #f1c40f;
            padding-bottom: 20px;
        }
        h2 {
            font-size: 2.2rem;
            color: #2980b9;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-left: 10px;
            border-left: 5px solid #f1c40f;
        }
        h3 {
            font-size: 1.8rem;
            color: #16a085;
            margin-top: 30px;
            margin-bottom: 15px;
        }
        h4 {
            font-size: 1.4rem;
            color: #8e44ad;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            padding: 0 10px;
        }
        .highlight {
            background-color: #fffacd;
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            border-left: 4px solid #f1c40f;
        }
        strong {
            color: #c0392b;
        }
        em {
            color: #27ae60;
        }
        .featured-image {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            display: block;
            margin: 40px auto;
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .form-section {
            background-color: #f8f9fa;
            padding: 30px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid #ddd;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            color: #2c3e50;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #4a90e2;
            outline: none;
        }
        button {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: bold;
            transition: background-color 0.3s ease;
        }
        button:hover {
            background-color: #2980b9;
        }
        .comments-section, .ratings-section {
            margin-top: 50px;
        }
        .comment, .rating {
            padding: 20px;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
        }
        .comment-author {
            font-weight: bold;
            color: #2c3e50;
        }
        .stars {
            color: #f1c40f;
            font-size: 1.2rem;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 0;
            margin-top: 60px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            padding: 0 40px;
        }
        .footer-section h3 {
            color: #f1c40f;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        friend-link:hover {
            background-color: rgba(241, 196, 15, 0.3);
        }
        friend-link a {
            color: #ecf0f1;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #7f8c8d;
            margin-top: 30px;
            font-size: 0.9rem;
            color: #bdc3c7;
        }
        @media (max-width: 768px) {
            body {
                font-size: 16px;
                padding-top: 70px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #34495e;
                padding: 20px;
                border-radius: 0 0 10px 10px;
                position: absolute;
                top: 100%;
                left: 0;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            .content-wrapper {
                padding: 0 20px;
            }
            .footer-container {
                grid-template-columns: 1fr;
                padding: 0 20px;
            }
        }
        .last-updated {
            text-align: center;
            font-style: italic;
            color: #7f8c8d;
            margin-bottom: 30px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
