        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #6a11cb;
            --secondary: #2575fc;
            --accent: #ff5e7d;
            --dark: #2d2b55;
            --light: #f8f9fa;
            --gray: #6c757d;
            --success: #28a745;
            --border-radius: 12px;
            --shadow: 0 8px 25px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
        }
        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent);
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            padding: 14px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(106, 17, 203, 0.3);
            color: white;
        }
        section {
            padding: 80px 0;
        }
        h1, h2, h3, h4 {
            color: var(--dark);
            margin-bottom: 1.2rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3.2rem;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        h2 {
            font-size: 2.5rem;
            border-left: 6px solid var(--accent);
            padding-left: 20px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(255, 94, 125, 0.1);
            border-left: 4px solid var(--accent);
            padding: 20px;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
            margin: 30px 0;
        }
        header {
            background-color: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .logo span {
            color: var(--accent);
        }
        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:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--accent);
            transition: var(--transition);
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
        }
        .breadcrumb {
            padding: 15px 20px;
            background-color: rgba(255,255,255,0.8);
            border-bottom: 1px solid #eee;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 8px;
            color: var(--gray);
        }
        .hero {
            text-align: center;
            padding: 100px 20px;
            background: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            position: relative;
            color: white;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            margin: 0 20px 40px;
            overflow: hidden;
        }
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(106,17,203,0.8), rgba(37,117,252,0.8));
        }
        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero h1 {
            color: white;
            background: none;
            -webkit-background-clip: unset;
            background-clip: unset;
            font-size: 3.5rem;
            margin-bottom: 25px;
        }
        .hero p {
            font-size: 1.3rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        .search-section {
            background-color: white;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin: 40px auto;
            max-width: 800px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 18px 25px;
            border: 2px solid #e0e0e0;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            outline: none;
            transition: var(--transition);
        }
        .search-form input:focus {
            border-color: var(--primary);
        }
        .search-form button {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            color: white;
            border: none;
            padding: 0 35px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: linear-gradient(to right, var(--secondary), var(--primary));
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 50px;
        }
        .main-content {
            background: white;
            padding: 50px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .widget {
            background: white;
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .widget h3 {
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .featured-img {
            margin: 40px 0;
            position: relative;
        }
        .featured-img img {
            width: 100%;
            border-radius: var(--border-radius);
            transition: var(--transition);
        }
        .featured-img img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .interaction-forms {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }
        .form-box {
            background: white;
            padding: 35px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .form-box h3 {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .form-box form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 25px;
        }
        .form-box input, .form-box textarea, .form-box select {
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-box input:focus, .form-box textarea:focus, .form-box select:focus {
            border-color: var(--primary);
            outline: none;
        }
        .form-box textarea {
            min-height: 120px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 10px 0;
        }
        .stars input {
            display: none;
        }
        .stars label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .stars label:hover,
        .stars input:checked ~ label {
            color: #ffc107;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 60px 0;
            padding: 40px;
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .web-link {
            padding: 15px;
            border-left: 4px solid var(--secondary);
            background-color: rgba(37, 117, 252, 0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(37, 117, 252, 0.1);
            transform: translateX(10px);
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-col h4 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: #ccc;
        }
        .footer-col ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #aaa;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2.8rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            .hero h1 {
                font-size: 3rem;
            }
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav ul {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: white;
                flex-direction: column;
                align-items: center;
                padding-top: 50px;
                transition: var(--transition);
                box-shadow: var(--shadow);
            }
            nav ul.active {
                left: 0;
            }
            nav ul li {
                margin: 20px 0;
            }
            .search-form {
                flex-direction: column;
            }
            .search-form input, .search-form button {
                border-radius: 50px;
                margin-bottom: 10px;
                width: 100%;
            }
            .hero {
                padding: 70px 20px;
                margin: 0 0 40px;
                border-radius: 0;
            }
            .main-content {
                padding: 30px;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            section {
                padding: 50px 0;
            }
            .interaction-forms {
                grid-template-columns: 1fr;
            }
        }
