body {
    margin: 0;
    padding: 0;
    background: #f5f7fa;
    font-family: Roboto, sans-serif;
    overflow-x: hidden;
}

/* Sidebar */

.sidebar {
    width: 200px;
    height: 100vh;
    background: #ffffff;
    position: fixed;
    left: 0;
    top: 0;
    padding: 20px 15px;
    border-right: 1px solid #eee;
}

/* Logo */

.logo {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.1;
    color: #0267d2;
    letter-spacing: 2px;
}

.logo-circle a img {
    width: 40px;
    height: 40px;
}

/* Menu */

.menu-item {
    padding: 5px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #444;
    transition: 0.3s;
    font-size: 15px;
}

.menu-item:hover {
    background: #f2e3ff;
    color: #4a166c;
}

.menu-item.active {
    background: #ead4ff;
    color: #4a166c;
    font-weight: 600;
}

.menu-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Main Content */

.main-content {
    margin-left: 200px;
    min-height: 100vh;
    padding: 10px 30px;
}

/* Topbar */

.topbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.topbar a {
    text-decoration: none;
    color: #111;
    font-size: 16px;
}

.btn-login {
    border: 1px solid #4a166c;
    background: #fff;
    color: #4a166c;
    padding: 10px 30px;
    border-radius: 10px;
}

.btn-signup {
    border: none;
    background: #0267d2;
    color: #fff;
    padding: 10px 30px;
    border-radius: 10px;
}

/* Hero Section */

.hero-section {
    min-height:70vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section h1 {
    font-size: 22px;
    font-weight: 700;
    color: #3c1459;
}

.hero-section h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 15px;
    color: #333;
}

.hero-section p {
    font-size: 18px;
    margin-top: 15px;
    color: #444;
}

/* Toggle */

.search-toggle {
    width: 320px;
    background: #ece7eb;
    border-radius: 50px;
    padding: 4px;
    margin: 20px auto;
    display: flex;
}

.active-tab {
    background: #fff;
    border-radius: 50px;
    flex: 1;
    padding: 8px;
    font-weight: 600;
    color: #4a166c;
}

.tab {
    flex: 1;
    padding: 8px;
    color: #555;
}

/* Search Box */

.main-search {
    width: 90%;
    max-width: 1100px;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin: auto;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-icon {
    font-size: 18px;
    color: gray;
    margin-left: 25px;
}

.main-search input {
    flex: 1;
    border: none;
    outline: none;
    padding: 18px;
    font-size: 18px;
}

.search-btn {
    background: #0267d2;
    color: #fff;
    border: none;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 600;
}

/* Popular Tags */

.popular-tags {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.tag {
    border: 1px solid #5a2a7b;
    padding: 5px 22px;
    border-radius: 50px;
    color: #5a2a7b;
    background: #fff;
    font-size: 12px;
}

/* Responsive */

@media(max-width: 992px) {

    .sidebar {
        width: 90px;
    }

    .sidebar span,
    .arrow {
        display: none;
    }

    .main-content {
        margin-left: 90px;
    }

    .hero-section h1 {
        font-size: 38px;
    }

    .hero-section h2 {
        font-size: 28px;
    }

    .hero-section p {
        font-size: 20px;
    }

    .main-search input {
        font-size: 18px;
        padding: 16px;
    }

    .search-btn {
        font-size: 20px;
        padding: 16px 30px;
    }

}


/* Insights */
.insight-card {
    background: #fff;
    border-radius: 16px;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid #edf1f5;
}

.insight-label {
    font-size: 15px;
    font-weight: 600;
    color: #2a124b;
    margin-bottom: 10px;
}

.report-icon {
    font-size: 26px;
    color: #4b3b55;
    line-height: 1;
    margin-top: 4px;
}

.insight-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f0d45;
    line-height: 1.4;
    margin-bottom: 8px;
}

.insight-description {
    font-size: 16px;
    color: #24124b;
    line-height: 1.7;
    margin-bottom: 10px;
}

.insight-links {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.insight-links a {
    text-decoration: none;
    font-size: 15px;
    color: #6b627d;
    transition: 0.3s;
}

.insight-links a:hover {
    color: #1f0d45;
}

.insight-links span {
    color: #c4c4c4;
}