:root {
    --tw-primary: #0f2c59;
    --tw-secondary: #337ccf;
    --tw-accent: #ff7b00;
    --tw-dark: #0b192c;
    --tw-light: #f8fafc;
    --tw-surface: #ffffff;
    --tw-border: #e2e8f0;
    --tw-text-main: #1e293b;
    --tw-text-muted: #64748b;
    --tw-shadow: 0 10px 25px -5px rgba(15, 44, 89, 0.08);
    --tw-radius: 12px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--tw-light);
    color: var(--tw-text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

.tw-disclaimer-bar {
    background-color: var(--tw-dark);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 10px 20px;
    text-align: center;
    border-bottom: 2px solid var(--tw-accent);
}

.tw-wrapper {
    display: flex;
    min-height: calc(100vh - 43px);
}

.tw-sidebar {
    width: 280px;
    background-color: var(--tw-surface);
    border-right: 1px solid var(--tw-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: fixed;
    height: calc(100vh - 43px);
    z-index: 100;
}

.tw-sidebar-top {
    padding: 30px;
}

.tw-logo {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--tw-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: block;
    margin-bottom: 40px;
}

.tw-logo span {
    color: var(--tw-accent);
}

.tw-nav-menu {
    list-style: none;
}

.tw-nav-menu li {
    margin-bottom: 12px;
}

.tw-nav-menu a {
    color: var(--tw-text-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
}

.tw-nav-menu a:hover, .tw-nav-menu a.active {
    background-color: rgba(51, 124, 207, 0.1);
    color: var(--tw-primary);
    transform: translateX(4px);
}

.tw-sidebar-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--tw-border);
    font-size: 0.8rem;
    color: var(--tw-text-muted);
}

.tw-main-content {
    margin-left: 280px;
    flex: 1;
    padding: 60px;
    max-width: 1300px;
}

.tw-hero-editorial {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.tw-badge {
    display: inline-block;
    background-color: rgba(51, 124, 207, 0.15);
    color: var(--tw-secondary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tw-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--tw-primary);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.tw-hero-text {
    font-size: 1.15rem;
    color: var(--tw-text-muted);
    margin-bottom: 35px;
}

.tw-btn-primary {
    display: inline-block;
    background-color: var(--tw-primary);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: var(--tw-radius);
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--tw-shadow);
    transition: all 0.3s ease;
}

.tw-btn-primary:hover {
    background-color: var(--tw-secondary);
    transform: translateY(-2px);
}

.tw-hero-image-wrapper {
    position: relative;
}

.tw-hero-image-wrapper img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--tw-radius);
    box-shadow: var(--tw-shadow);
}

.tw-grid-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.tw-card {
    background-color: var(--tw-surface);
    border: 1px solid var(--tw-border);
    border-radius: var(--tw-radius);
    padding: 35px;
    box-shadow: var(--tw-shadow);
    transition: transform 0.3s ease;
}

.tw-card:hover {
    transform: translateY(-5px);
}

.tw-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--tw-primary);
    margin-bottom: 15px;
}

.tw-card p {
    color: var(--tw-text-muted);
    font-size: 0.95rem;
}

.tw-footer {
    border-top: 1px solid var(--tw-border);
    padding-top: 30px;
    margin-top: 80px;
    text-align: center;
    color: var(--tw-text-muted);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .tw-sidebar {
        width: 100%;
        height: auto;
        position: relative;
    }
    .tw-wrapper {
        flex-direction: column;
    }
    .tw-main-content {
        margin-left: 0;
        padding: 30px;
    }
    .tw-hero-editorial {
        grid-template-columns: 1fr;
    }
    .tw-grid-cards {
        grid-template-columns: 1fr;
    }
}