.hub-section {
    padding: 60px 0;
    line-height: 1.6;
}

.hub-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.country-selector-wrap {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border-color);
}

.country-selector-wrap label {
    font-weight: 600;
    color: var(--text-primary);
}

.country-select {
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: white;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
}

.hub-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid var(--border-color);
}

.hub-card h2 {
    color: var(--color-accent);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.hub-card h3 {
    margin: 20px 0 10px;
    font-size: 1.25rem;
}

.hub-card ul {
    list-style: none;
    padding: 0;
}

.hub-card li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.hub-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: bold;
}

.badge-eu {
    display: inline-block;
    padding: 4px 12px;
    background: #e0f2fe;
    color: #0369a1;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.badge-country {
    display: inline-block;
    padding: 4px 12px;
    background: #f0fdf4;
    color: #166534;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.faq-answer {
    color: var(--text-secondary);
}

.post-item {
    margin-bottom: 40px;
}

.post-title {
    font-size: 1.5rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.hub-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
    overflow-x: auto;
}

.hub-nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.2s;
    white-space: nowrap;
}

.hub-nav a:hover,
.hub-nav a.active {
    background: var(--bg-secondary);
    color: var(--color-primary);
}

@media (max-width: 600px) {
    .country-selector-wrap {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .country-select {
        width: 100%;
    }
}