        * {
            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;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        ul {
            list-style: none;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .header {
            background: linear-gradient(135deg, #1a237e, #4a148c);
            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;
        }
        .logo a {
            font-size: 2rem;
            font-weight: bold;
            color: #ffeb3b;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        .logo a:hover {
            transform: scale(1.05);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: background 0.3s, color 0.3s;
        }
        .nav-desktop a:hover {
            background: #ffeb3b;
            color: #1a237e;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: #1a237e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem;
            border-bottom: 1px solid #3949ab;
            transition: background 0.3s;
        }
        .nav-mobile a:hover {
            background: #3949ab;
        }
        .breadcrumb {
            background: #e3f2fd;
            padding: 0.8rem 2rem;
            font-size: 0.9rem;
            max-width: 1200px;
            margin: 0 auto;
            border-radius: 0 0 8px 8px;
        }
        .breadcrumb a {
            color: #1a237e;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .main-container {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1rem;
        }
        .content {
            background: white;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        h1 {
            color: #1a237e;
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 3px solid #ffeb3b;
            padding-bottom: 0.5rem;
        }
        h2 {
            color: #4a148c;
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            padding-left: 0.5rem;
            border-left: 5px solid #ff9800;
        }
        h3 {
            color: #303f9f;
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.2rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            background: #fff9c4;
            padding: 1rem;
            border-left: 4px solid #ff9800;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2rem;
            margin-right: 0.5rem;
        }
        .bold {
            font-weight: bold;
            color: #d32f2f;
        }
        .image-container {
            text-align: center;
            margin: 2rem 0;
        }
        .image-container img {
            border-radius: 10px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
        }
        .form-box {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        }
        .form-title {
            font-size: 1.3rem;
            color: #1a237e;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .form-group {
            margin-bottom: 1rem;
        }
        label {
            display: block;
            margin-bottom: 0.3rem;
            color: #555;
            font-weight: 500;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.7rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #1a237e;
            outline: none;
        }
        button {
            background: linear-gradient(to right, #1a237e, #4a148c);
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            transition: background 0.3s, transform 0.2s;
        }
        button:hover {
            background: linear-gradient(to right, #283593, #6a1b9a);
            transform: translateY(-2px);
        }
        .rating {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1rem;
        }
        .star {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffeb3b;
        }
        .web-links {
            background: #e8eaf6;
            padding: 2rem;
            border-radius: 10px;
            margin-top: 3rem;
        }
        .web-links h2 {
            color: #1a237e;
            border-left: none;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        .web-link a {
            color: #1a237e;
            font-weight: 500;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .footer {
            background: #1a237e;
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: auto;
        }
        .copyright {
            margin-top: 1rem;
            font-size: 0.9rem;
            color: #bbbbbb;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .main-container {
                grid-template-columns: 1fr;
            }
            .sidebar {
                order: -1;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .links-grid {
                grid-template-columns: 1fr;
            }
        }
