.eo-1488-wrapper {
    padding: 60px 20px;
    background-color: #F8F5EF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eo-1488-header {
    text-align: center;
    max-width: 800px;
    margin-bottom: 50px;
}

.eo-1488-eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #D4B996;
}

.eo-1488-heading {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0A192F;
}

.eo-1488-intro {
    font-size: 16px;
    line-height: 1.6;
    color: #5A6A7D;
}

.eo-1488-cards {
    display: flex;
    gap: 30px;
    width: 100%;
    max-width: 1200px;
}

.eo-1488-card {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.eo-1488-card:hover {
    transform: translateY(-5px);
}

.eo-1488-card-img-wrap {
    position: relative;
    width: 100%;
}

.eo-1488-card-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.eo-1488-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #D4B996;
    color: #0A192F;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.eo-1488-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.eo-1488-card-title {
    font-size: 24px;
    margin: 0 0 10px;
    color: #0A192F;
}

.eo-1488-card-subtitle {
    font-size: 16px;
    font-weight: 500;
    margin: 0 0 15px;
    color: #1B2B44;
}

.eo-1488-card-desc {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
    color: #5A6A7D;
    flex-grow: 1;
}

.eo-1488-card-best-for {
    font-size: 14px;
    padding: 15px;
    background: #F8F9FA;
    border-radius: 6px;
    margin-bottom: 25px;
    color: #5A6A7D;
}

.eo-1488-btn-wrap {
    margin-top: auto;
}

.eo-1488-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    background-color: #0A192F;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.eo-1488-btn:hover {
    background-color: #1B2B44;
}

/* Tablet */
@media (max-width: 1024px) {
    .eo-1488-cards {
        flex-wrap: wrap;
        justify-content: center;
    }
    .eo-1488-card {
        flex: 1 1 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .eo-1488-cards {
        flex-direction: column;
    }
    .eo-1488-card {
        flex: 1 1 100%;
        max-width: 100%;
    }
    .eo-1488-heading {
        font-size: 28px;
    }
}
