body {
    font-family: "Inter", sans-serif;
}

.section {
    padding: 60px 0;
}

h1,
h2,
h3 {
    font-family: "Bebas Neue", sans-serif;
}

h2, h3 {
    color: #41b5a1 !important;
}

.section-banner {
    background-color: #0F4D5C;
    color: white;
    padding: 15px;
    margin: 0 -15px 30px;
    /* negative margins to full-bleed on small screens */
    font-size: 2.5rem;
}

.section-banner {
    color: white !important;
}

.navbar {
    background-color: #0F4D5C;
}

.navbar-brand,
.nav-link {
    color: white !important;
    font-weight: bold;
}

.logo-hero {
    max-width: 280px;
    margin: 0 auto;
}

.table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.card img {
    height: 300px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    padding: 0.9rem 1.2rem;
    font-size: 1.1rem;
    border-bottom: 1px solid #eee;
    vertical-align: top;
}

span {
    padding: 0px 10px;
}

.left-col {
    width: 50%;
    padding-right: 2.5rem;
    position: relative;
    text-align: right;
}

.right-col {
    width: 50%;
    padding-left: 2.5rem;
    text-align: left;
}

/* Vertical divider line */
.left-col::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 2px;
    background: linear-gradient(to bottom, darkgray 0%, darkgray 50%, darkgray 100%);
    border-radius: 2px;
}

tr:last-child td {
    border-bottom: none;
}

@media (max-width: 767px) {
    .navbar {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 100%;
        z-index: 999;
    }

    .desktop {
        display: none !important;
    }

    #cta {
        margin-top: 50px;
    }

    .section {
        padding: 40px 0;
        /* less padding on mobile */
    }

    h1.display-4 {
        font-size: 2.8rem;
        /* smaller headline on phones */
    }

    .section-banner {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    td span {
        display: block;
        text-align: center;
    }
}

@media (max-width: 550px) {
    .left-col {
        width: 100%;
        padding-right: 1.2rem;
    }

    .right-col {
        width: 100%;
        padding-left: 1.2rem;
    }

    .left-col::after {
        display: none;
    }

    td {
        display: block;
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    td:last-child {
        border-bottom: none;
    }
}

/* Card hover effect (optional nice touch) */
/* .card {
    transition: transform 0.2s;
}

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