.gi-4f58c038-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.gi-4f58c038-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gi-4f58c038-main-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
}

.gi-4f58c038-main-desc {
    margin: 0;
    line-height: 1.6;
}

.gi-4f58c038-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gi-4f58c038-card {
    display: flex;
    flex-direction: column;
    background: #BDFFBD; /* Default fallback light green */
    padding: 35px;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gi-4f58c038-card-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 1.5rem;
}

.gi-4f58c038-card-desc {
    margin-top: 0;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.gi-4f58c038-button {
    display: inline-block;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 50px; /* Pill shape */
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    align-self: flex-start;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    box-shadow: 0 4px 6px rgba(56, 35, 112, 0.1);
}

.gi-4f58c038-button:hover,
.gi-4f58c038-button:focus {
    opacity: 1;
    box-shadow: 0 7px 14px rgba(56, 35, 112, 0.15);
}