        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #0a5c7b; 
            --secondary: #c41230; 
            --accent: #f0b323; 
            --dark: #1a1a1a;
            --light: #f8f9fa;
            --gray: #6c757d;
            --shadow: 0 5px 15px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 28px;
            border-radius: 5px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            margin-bottom: 1.2rem;
            line-height: 1.3;
            color: var(--primary);
        }
        h1 {
            font-size: 3.2rem;
            border-left: 5px solid var(--accent);
            padding-left: 20px;
        }
        h2 {
            font-size: 2.5rem;
            margin-top: 2rem;
            position: relative;
            padding-bottom: 10px;
        }
        h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(240,179,35,0.2) 0%, rgba(240,179,35,0) 100%);
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid var(--accent);
            margin: 30px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        header {
            background: var(--dark);
            color: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--accent);
        }
        .logo i {
            margin-right: 10px;
            color: var(--primary);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 8px 0;
            position: relative;
        }
        nav ul li a:hover {
            color: var(--accent);
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: var(--transition);
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background: #e9ecef;
            padding: 15px 20px;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(10, 92, 123, 0.85), rgba(10, 92, 123, 0.9)), url('https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 20px;
        }
        .hero h1 {
            color: white;
            border-left: none;
            padding-left: 0;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .search-box {
            max-width: 700px;
            margin: 40px auto;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .search-box h3 {
            margin-bottom: 20px;
            text-align: center;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
            outline: none;
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1.1rem;
        }
        .search-form button:hover {
            background: var(--secondary);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }
        .main-content {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .widget-list {
            list-style: none;
        }
        .widget-list li {
            padding: 12px 0;
            border-bottom: 1px solid #eee;
        }
        .widget-list li:last-child {
            border-bottom: none;
        }
        .widget-list a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .img-container {
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background: #f1f1f1;
            color: var(--gray);
            font-size: 0.95rem;
        }
        .interaction {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #eee;
        }
        .rating-form, .comment-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--accent);
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 20px;
        }
        .footer-links h4 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links ul li {
            margin-bottom: 10px;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #444;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            nav.active {
                max-height: 400px;
                margin-top: 20px;
            }
            nav ul {
                flex-direction: column;
                align-items: flex-start;
            }
            nav ul li {
                margin: 10px 0;
                width: 100%;
            }
            .hamburger {
                display: block;
            }
            .hero {
                padding: 80px 20px;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input {
                border-radius: 5px;
                margin-bottom: 10px;
            }
            .search-form button {
                border-radius: 5px;
                padding: 15px;
            }
        }
        @media (max-width: 576px) {
            .main-content, .sidebar-widget, .rating-form, .comment-form {
                padding: 25px;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            section {
                padding: 40px 0;
            }
        }
