body {
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
}

main {
    padding: 40px 0;
}

.intro-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.ventures-table-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.ventures-table {
    width: 100%;
    border-collapse: collapse;
}

.ventures-table th,
.ventures-table td {
    padding: 16px;
    border-bottom: 1px solid #ddd;
    text-align: left;
    vertical-align: middle;
}

.ventures-table th {
    background: #f0f0f0;
}

.business-logo {
    width: 70px;
    height: auto;
    border-radius: 10px;
}

.site-footer {
    background: #1f2340;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        gap: 15px;
    }

    .ventures-table {
        display: block;
        overflow-x: auto;
    }
}