body {
    background-color: black;
}

.hero {
    /* height: 100vh; */
    display: flex;
    justify-content: center;
}

.container {
    text-align: center;
}

.row {
    /* margin-top: 10%; */
    margin-bottom: 5%;
}

.card-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.card {
    padding: 20px;
    height: 200px;
    text-decoration: none;
    /* Remove underline */
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    width: 33%;
    text-align: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.1);
}

.card:hover,
.card.active {
    background: #9e9e9e;
}

.description {
    font-size: 18px;
    padding: 10px;
    background: #1e1e1e;
    border-radius: 10px;
    width: 80%;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(255, 255, 255, 0.1);
}

.hero img {
    max-width: 300px;
    border-radius: 10px;
}

h1 {
    font-size: 4rem;
    font-family: 'Trebuchet MS', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.title {
    /* font-size: 4rem; */
    font-family: 'Trebuchet MS', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
}
.benefit-hero {
    background-color: #d4f5d6; /* Pastel light green */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    max-height: 300px;
}
.challenge-hero {
    /* background-color: #f5d4d4; Pastel light green */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
    max-height: 200px;
    margin-top: 5%;
}

.benefits {
    display: flex;
    /* gap: 20px; */
    height: 300px;
    margin-left: 50px;
    margin-right: 50px;
}

.benefit {
    display: flex;
    flex: 1; /* Ensure equal width for each column */
    align-items: center;
    /* text-align: center; */
    gap: 10px;
    text-decoration: none;
    color: #333;
    padding: 10px;
    transition: background 0.3s ease;
    border-radius: 8px;
    max-width: 500px;
}

.benefit h4 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.challenges {
    display: flex;
    
    /* gap: 20px; */
    /* height: 300px; */
    margin-left: 50px;
    margin-right: 50px;
}

.challenge {
    flex: 1; /* Ensure equal width for each column */
    display: flex;
    align-items: center;
    text-align: center;
    gap: 10px;
    text-decoration: none;
    padding: 10px;
    border-radius: 8px;
    max-width: 500px;

}

.challenge h3 {
    color: rgb(228, 121, 121);
}

.challenge p {
    color: rgb(255, 255, 255);
}

.benefit:hover {
    background-color: rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 24px;
}
/* 
.hs-form__virality-link {
    display: none;
} */

.filter-buttons {
    display: flex;
    justify-content: center;
    margin-top: 3%;
    gap: 10px; /* Space between buttons */
}

.filter-buttons button {
    width: 150px; /* Set a fixed width for all buttons */
    text-align: center;
}