/* .container {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
    text-align: center;
} */

.savings-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 60px;
}

.savings-features {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature {
    max-width: 400px;
}

.feature .icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature p {
    color: #333;
    line-height: 1.6;
}

.link-arrow {
    display: inline-block;
    margin-top: 10px;
    color: #1a56db;
    font-weight: 600;
    text-decoration: none;
}

.wave {
    height: 120px;
    background: #e6f0fa;
    border-top-left-radius: 100% 60px;
    border-top-right-radius: 100% 60px;
}

.chat-bubble {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: white;
    border-radius: 30px;
    padding: 12px 18px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.case-studies {
    padding: 80px 20px;
    background: #fff;
}

/* .section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
} */

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    border-radius: 16px;
    overflow: hidden;
    background: var(--main-color);
    color: white;
    display: flex;
    flex-direction: column;
}


.text-muted {
    color: #ccc;
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    color: white;
}

.card-content p {

    color: #CCC;
}

.tags span {
    border: 1px solid #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 6px;
}

.card button {
    margin-top: 15px;
    padding: 10px 18px;
    border-radius: 20px;
    border: none;
    background: white;
    color: var(--main-color);
    font-weight: bold;
    cursor: pointer;
}


.checking-hero {
    position: relative;
    height: 420px;
    background-image: url("../images/photo-1500530855697-b586d89ba3ee.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding-left: 8%;
}

.hero-card {
    background: white;
    padding: 40px;
    border-radius: 12px;
    max-width: 480px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-card h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero-card p {
    color: #444;
    line-height: 1.6;
}

/* tailwind */

.hide-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hide-mobile {
        display: block;
    }
}

.show-mobile {
    display: block;
}

@media (min-width: 768px) {
    .show-mobile {
        display: none;
    }
}

.only-desktop {
    display: none;
}

@media (min-width: 1024px) {
    .only-desktop {
        display: block;
    }
}