        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.6;
            padding: 0;
            margin: 0;
        }
        a {
            text-decoration: none;
            color: #2ecc71;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #27ae60;
        }
        ul {
            list-style: none;
        }
        header {
            background: linear-gradient(135deg, #1abc9c, #16a085);
            color: white;
            padding: 1rem 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
        }
        .my-logo i {
            margin-right: 10px;
            color: #f1c40f;
        }
        .my-logo:hover {
            color: #f1c40f;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
        }
        .nav-links a {
            color: white;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .nav-links a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background-color: #ecf0f1;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #7f8c8d;
        }
        .breadcrumb a:hover {
            color: #2ecc71;
        }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        article {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid #2ecc71;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #34495e;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #1abc9c;
        }
        h3 {
            font-size: 1.8rem;
            color: #16a085;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #27ae60;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
            padding: 0 0.5rem;
        }
        .highlight {
            background-color: #fffacd;
            padding: 1.5rem;
            border-left: 5px solid #f39c12;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .image-container {
            text-align: center;
            margin: 2.5rem 0;
        }
        .featured-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .last-updated {
            font-style: italic;
            color: #7f8c8d;
            text-align: right;
            margin-bottom: 2rem;
            font-size: 0.95rem;
        }
        .link-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin: 2rem 0;
            justify-content: center;
        }
        .link-list a {
            background-color: #e8f6f3;
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            border: 2px solid #a3e4d7;
        }
        .link-list a:hover {
            background-color: #d1f2eb;
            border-color: #2ecc71;
        }
        .form-section {
            background-color: #f1f8e9;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
        }
        .form-title {
            color: #388e3c;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        input, textarea, select {
            padding: 1rem;
            border: 2px solid #c8e6c9;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #2ecc71;
        }
        button {
            background-color: #2ecc71;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.2s;
            align-self: flex-start;
        }
        button:hover {
            background-color: #27ae60;
            transform: translateY(-3px);
        }
        .rating {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating input:checked ~ label,
        .rating label:hover,
        .rating label:hover ~ label {
            color: #f1c40f;
        }
        footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        .footer-section h3 {
            color: #1abc9c;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        friend-link {
            display: block;
            background-color: #34495e;
            padding: 1rem;
            margin: 0.8rem 0;
            border-radius: 6px;
            transition: background-color 0.3s;
        }
        friend-link a {
            color: #bdc3c7;
        }
        friend-link:hover {
            background-color: #3d566e;
        }
        friend-link a:hover {
            color: white;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #4a6572;
            font-size: 0.9rem;
            color: #95a5a6;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 1rem;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 2rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 1rem;
            }
            article {
                padding: 1.5rem;
            }
            .link-list {
                flex-direction: column;
                align-items: center;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) and (max-width: 1024px) {
            .container {
                padding: 0 1.5rem;
            }
        }
