.startup-card {
    display: flex;
    gap: 16px;
    padding: 18px;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    background: #fff;
    height: 100%;
}

.startup-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.startup-content {
    flex: 1;
}

.startup-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.startup-description {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 12px;
}

.startup-badge {
    display: inline-block;
    padding: 4px 10px;
    background: #dff3df;
    color: #198754;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.spacesectorstiic {
    background: #31849b;
    padding: 10px 20px;
    text-align: center;
    color: #fff;

    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.spacesectorstiic .tagline {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    color: #fff; /* White text */
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spacesectorstiic h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 0.7;
    margin: 0 0 20px;
    color: #ffffff;
}

.spacesectorstiic p {
    text-align: center !important;
    margin: 0 auto !important;
    max-width: 700px;
    line-height: 1.6;
}

.spacesectorstiic .btn-group {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.spacesectorstiic .btn-orange {
    background: #ff8c1a;
    color: #fff;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.spacesectorstiic .btn-orange:hover {
    background: #e97800;
}

.spacesectorstiic .btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.spacesectorstiic .btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width:768px) {
    .spacesectorstiic h1 {
        font-size: 34px;
    }

    .spacesectorstiic p {
        font-size: 16px;
    }

    .spacesectorstiic .btn-group {
        flex-direction: column;
        align-items: center;
    }
}

.vertical-card {
    background: #31849b;
    border-radius: 12px;
    padding: 20px;
    color: #ffffff;
    height: 100%;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.vertical-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vertical-title {
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.vertical-title,
.vertical-title a,
.vertical-title a:visited,
.vertical-title a:hover,
.vertical-title a:focus {
    color: #ffffff !important;
    text-decoration: none;
}

.vertical-description {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.vertical-description p,
.vertical-description ul,
.vertical-description li {
    color: #ffffff;
}

.vertical-description ul {
    margin: 0;
    padding-left: 20px;
}

.vertical-description li {
    margin-bottom: 8px;
}

.vertical-badge {
    display: inline-block;
    margin-top: auto;
    padding: 6px 14px;
    background: #ff8c1a;
    color: #ffffff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}