body {
    font-family: 'Work Sans', 'Noto Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
  
}

.header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
}

.header h2 {
    font-size: 1.125rem;
    font-weight: bold;
    color: #141414;
    text-align: center;
}

.section-title {
    font-size: 1.375rem;
    font-weight: bold;
    color: #141414;
    padding: 1.25rem 1rem 0.75rem;
    margin: 0;
}

.card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: start;
    border-radius: 1rem;
}

.card-image {
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 1rem;
    aspect-ratio: 16 / 9;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0.25rem;
    padding: 1rem 0;
}

.card-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: #141414;
}

.card-description {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 0.75rem;
}

.card-description p {
    font-size: 1rem;
    color: #6b7280;
    margin: 0;
}

.services {
    background-image: url("https://cdn.usegalileo.ai/stability/861b3f80-bf72-4f54-a46b-0a19d633c5c7.png");
}

.jobs {
    background-image: url("https://cdn.usegalileo.ai/sdxl10/c7bd598b-702d-4515-b8db-02ee2dda92d9.png");
}

.content{
    background-image: url("content2.png");
}

.footer {
    display: flex;
    gap: 0.5rem;
    border-top: 1px solid #F4F4F4;
    background-color: #FFFFFF;
    padding: 0.5rem 1rem;
}

.footer-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 0.25rem;
    text-decoration: none;
    color: #6b7280;
    flex: 1;
}

.footer-link.active,
.footer-link:hover {
    color: #141414;
}

.footer-link .icon {
    display: flex;
    height: 2rem;
    align-items: center;
    justify-content: center;
}

.footer-link p {
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
}

.footer-padding {
    height: 1.25rem;
    background-color: #FFFFFF;
}

@media (min-width: 1280px) {
    .card {
        flex-direction: row;
    }

    .card-content {
        padding-left: 1rem;
    }
}
