* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fef9f3;
            color: #333;
            line-height: 1.7;
        }
        a {
            text-decoration: none;
            color: #e67e22;
            transition: color 0.3s;
        }
        a:hover {
            color: #d35400;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #ff9a3c, #ff6f3c);
            color: white;
            padding: 1rem 0;
            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;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: white;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .logo a:hover {
            color: #ffeaa7;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 30px;
            transition: all 0.3s;
        }
        .desktop-nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #ff9a3c;
            padding: 1rem;
            border-radius: 10px;
            margin-top: 1rem;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: white;
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        .breadcrumb {
            background-color: #fff5e6;
            padding: 0.8rem 20px;
            font-size: 0.9rem;
            border-bottom: 1px solid #ffd8b1;
        }
        .breadcrumb a {
            color: #e67e22;
        }
        .search-box {
            background-color: #fff;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin: 2rem auto;
            max-width: 800px;
        }
        .search-box h2 {
            color: #e67e22;
            margin-bottom: 1rem;
            text-align: center;
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ffd8b1;
            border-radius: 50px;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .search-form input:focus {
            border-color: #e67e22;
        }
        .search-form button {
            background: linear-gradient(to right, #ff9a3c, #ff6f3c);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 50px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.05);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 3rem;
        }
        h1 {
            color: #e67e22;
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            color: #ff6f3c;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px dashed #ffd8b1;
        }
        h3 {
            color: #ff9a3c;
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: #fff5e6;
            border-left: 5px solid #e67e22;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 8px;
        }
        .feature-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 15px;
            margin: 2rem auto;
            display: block;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
            transition: transform 0.5s;
        }
        .feature-img:hover {
            transform: scale(1.01);
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .tip-card {
            background: #fef9f3;
            border-radius: 15px;
            padding: 1.5rem;
            border: 2px solid #ffd8b1;
            transition: all 0.3s;
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #e67e22;
        }
        .interaction-section {
            background: #fff;
            border-radius: 20px;
            padding: 2.5rem;
            margin-top: 3rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .rating-form, .comment-form {
            margin-bottom: 2.5rem;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 1rem 0;
        }
        .star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffcc00;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: #555;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid #ffd8b1;
            border-radius: 10px;
            font-size: 1rem;
            transition: border 0.3s;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #e67e22;
            outline: none;
        }
        .submit-btn {
            background: linear-gradient(to right, #ff9a3c, #ff6f3c);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(255,106,60,0.4);
        }
        .web-links {
            background: #fff5e6;
            padding: 3rem 20px;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: white;
            padding: 1.2rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #ffd8b1;
            transition: all 0.3s;
        }
        .web-link:hover {
            border-color: #e67e22;
            box-shadow: 0 5px 10px rgba(0,0,0,0.05);
        }
        .web-link a {
            font-weight: 600;
            color: #555;
        }
        .web-link a:hover {
            color: #e67e22;
        }
        footer {
            background: linear-gradient(135deg, #333, #555);
            color: #fff;
            padding: 3rem 0 1.5rem;
            text-align: center;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }
        .copyright {
            font-size: 0.9rem;
            color: #ccc;
            border-top: 1px solid #666;
            padding-top: 1.5rem;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .header-container { flex-wrap: wrap; }
            .search-form { flex-direction: column; }
            .search-form button { padding: 15px; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            article { padding: 1.5rem; }
            .tips-grid { grid-template-columns: 1fr; }
            .web-links-container { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 480px) {
            .web-links-container { grid-template-columns: 1fr; }
            h1 { font-size: 1.8rem; }
            .logo a { font-size: 1.8rem; }
        }
