/* Teaser Section */
.teaser-section {
    padding: 100px 0;
    background-color: #fdfdfd;
}

.teaser-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #fff;
    height: 100%;
}

.teaser-card:hover {
    transform: translateY(-15px);
}

.teaser-img {
    height: 250px;
    object-fit: cover;
}

.teaser-body {
    padding: 2rem;
}

.teaser-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}