* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #333;
            background-color: #f8f9fa;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: #e53935;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #b71c1c;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
            color: white;
            padding: 20px 0;
            border-bottom: 5px solid #ffab00;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #ffab00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .logo a {
            color: inherit;
        }
        .logo a:hover {
            color: #ffd54f;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            padding: 10px;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: white;
            font-weight: 600;
            padding: 10px 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        nav a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #666;
            background-color: #e8eaf6;
            margin-bottom: 20px;
            border-radius: 5px;
            padding-left: 20px;
        }
        .breadcrumb a {
            color: #5c6bc0;
        }
        .breadcrumb span {
            margin: 0 10px;
        }
        main {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
        }
        h1 {
            color: #1a237e;
            font-size: 2.8rem;
            margin-bottom: 20px;
            border-bottom: 3px solid #ffab00;
            padding-bottom: 15px;
        }
        h2 {
            color: #283593;
            font-size: 2.2rem;
            margin-top: 40px;
            margin-bottom: 15px;
            padding-left: 10px;
            border-left: 5px solid #e53935;
        }
        h3 {
            color: #3949ab;
            font-size: 1.8rem;
            margin-top: 30px;
            margin-bottom: 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: #fff9c4;
            padding: 15px;
            border-left: 5px solid #ffab00;
            margin: 20px 0;
            font-weight: bold;
        }
        emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            float: right;
            margin: 20px 0 20px 30px;
            max-width: 500px;
            border: 5px solid #1a237e;
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            color: #666;
            padding: 10px;
            background-color: #f5f5f5;
            border-bottom-left-radius: 10px;
            border-bottom-right-radius: 10px;
        }
        .form-section {
            background-color: #f1f8e9;
            padding: 25px;
            border-radius: 10px;
            margin: 40px 0;
            border: 2px dashed #7cb342;
        }
        .form-title {
            color: #33691e;
            font-size: 1.8rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        form {
            display: grid;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border: 2px solid #c5e1a5;
            border-radius: 5px;
            font-size: 1rem;
            width: 100%;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #7cb342;
        }
        button {
            background-color: #ff9800;
            color: white;
            border: none;
            padding: 15px 25px;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            justify-self: start;
        }
        button:hover {
            background-color: #f57c00;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ffd600;
            cursor: pointer;
        }
        .rating-stars i:hover {
            transform: scale(1.2);
        }
        .content-links {
            display: inline-block;
            background-color: #e3f2fd;
            padding: 5px 10px;
            border-radius: 5px;
            margin: 0 5px;
            font-weight: bold;
        }
        .content-links:hover {
            background-color: #bbdefb;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 15px;
            margin: 30px 0;
            padding: 20px;
            background-color: #f5f5f5;
            border-radius: 10px;
        }
        .web-link {
            background-color: white;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
        }
        .web-link a {
            color: #1a237e;
            font-weight: 600;
            display: block;
        }
        footer {
            text-align: center;
            padding: 30px 0;
            color: #666;
            border-top: 2px solid #1a237e;
            background-color: #e8eaf6;
            margin-top: 40px;
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            nav ul {
                flex-direction: column;
                width: 100%;
                display: none;
                margin-top: 20px;
                background-color: #283593;
                padding: 20px;
                border-radius: 10px;
            }
            nav ul.active {
                display: flex;
            }
            nav a {
                padding: 15px;
                justify-content: center;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .featured-image {
                float: none;
                margin: 20px auto;
                max-width: 100%;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @media (min-width: 769px) {
            .hamburger {
                display: none;
            }
            nav ul {
                display: flex !important;
            }
        }
        @media print {
            .form-section, .web-links, .hamburger, nav, .breadcrumb {
                display: none;
            }
            body {
                background-color: white;
                color: black;
                max-width: 100%;
            }
        }
