        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #007bff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #0056b3;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a237e, #283593);
            color: white;
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffeb3b;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            color: #ffc107;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            color: white;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-links li a:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #e9ecef;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #6c757d;
        }
        .breadcrumb a:hover {
            color: #495057;
        }
        main {
            padding: 30px 0;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            margin: 20px auto;
        }
        article {
            padding: 20px;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a237e;
            margin-bottom: 20px;
            line-height: 1.2;
            border-left: 6px solid #ffeb3b;
            padding-left: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #283593;
            margin: 30px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #e0e0e0;
        }
        h3 {
            font-size: 1.6rem;
            color: #3949ab;
            margin: 25px 0 12px;
        }
        h4 {
            font-size: 1.3rem;
            color: #5c6bc0;
            margin: 20px 0 10px;
        }
        p {
            margin-bottom: 18px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 15px;
            border-left: 4px solid #ffeb3b;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            margin: 30px auto;
            max-width: 800px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .featured-image img {
            width: 100%;
            height: auto;
        }
        .form-section {
            background-color: #f1f8ff;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border: 1px solid #cfe2ff;
        }
        .form-title {
            font-size: 1.5rem;
            color: #1a237e;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        form {
            display: grid;
            gap: 15px;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #007bff;
            box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
        }
        button {
            background: linear-gradient(to right, #1a237e, #283593);
            color: white;
            border: none;
            padding: 14px 24px;
            border-radius: 6px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            justify-self: start;
        }
        button:hover {
            background: linear-gradient(to right, #283593, #3949ab);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .rating {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffc107;
        }
        footer {
            background-color: #1a237e;
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffeb3b;
            font-size: 1.4rem;
            margin-bottom: 20px;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            color: #bbdefb;
        }
        friend-link:hover {
            color: #ffeb3b;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #3949ab;
            font-size: 0.9rem;
            color: #bbdefb;
        }
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #283593;
                padding: 20px;
                border-radius: 8px;
                margin-top: 15px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .form-section {
                padding: 20px;
            }
        }
        .text-center {
            text-align: center;
        }
        .bold {
            font-weight: bold;
            color: #1a237e;
        }
        .last-updated {
            font-style: italic;
            color: #6c757d;
            margin-bottom: 30px;
            padding: 10px;
            background-color: #f8f9fa;
            border-radius: 6px;
            display: inline-block;
        }
